Use PHP in Javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Berkowitz
    New Member
    • Feb 2008
    • 5

    Use PHP in Javascript

    Hi,

    I know it's not smart to use php and javascript together, but i need it. So I would like to know if this is possible.

    This is my php code, I'm reading out my database.

    [PHP]
    <?php foreach ($listRows as $record): ?>
    <?php $link1 = $record['link1'];
    $link2 = $record['link2'] ;
    $link3 = $record['link3'] ;
    $link4 = $record['link5'] ;
    $link5 = $record['link6'] ;
    $link6 = $record['link7']; ?>

    <?php endforeach ?>
    [/PHP]

    Now I need my $link vars in a javascript.
    Is This possible??
    Help would be very much appriciated
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by Berkowitz
    Hi,

    I know it's not smart to use php and javascript together, but i need it. So I would like to know if this is possible.

    This is my php code, I'm reading out my database.

    Code:
    	<?php foreach ($listRows as $record): ?>
    <?php $link1 = $record['link1'];
    			$link2 = $record['link2'] ;
                $link3 = $record['link3'] ;
                $link4 = $record['link5'] ;
                $link5 = $record['link6'] ;
                $link6 = $record['link7']; ?>
                
        <?php endforeach ?>
    Now I need my $link vars in a javascript.
    Is This possible??
    Help would be very much appriciated
    Can you show a written code, of javascript, on how you would like the outcome to look.
    cheers :)

    Comment

    • Berkowitz
      New Member
      • Feb 2008
      • 5

      #3
      This is my javascript.

      Code:
      <script language="javascript">
      <!-- 
      
       stBM(2,"tree1d1a",[0,"","","blank.gif",0,"left","default","hand",0,0,-1,-1,-1,"none",0,"#000000","transparent","","repeat",1,"defButton_f%20.gif","defButton_uf.gif",9,9,1,"line_def0.gif","line_def1.gif","line_def2.gif","line_def3.gif",1,0,3,1,"center",0,0]);
      stBS("p0",[0,0]);
      stIT("p0i0",["Snel naar","","_self","","","defIcon_f.gif","defIcon_uf.gif",18,18,"9pt 'Arial'","#000000","none","transparent","","no-repeat","9pt 'Arial'","#000000","underline","transparent","","no-repeat","9pt 'Arial'","#FFFFFF","none","#000099","","no-repeat","9pt 'Arial'","#FFFFFF","underline","#000099","","no-repeat",0,0,"left","middle",0,0]);
      stBS("p1",[,1],"p0");
      stIT("p1i0",[$link1],"p0i0");
      stBS("p2",[],"p0");
      stIT("p2i0",["Netwerken",,,,,"defIcon_c.gif","defIcon_c.gif"],"p0i0");
      stIT("p2i1",["Servers"],"p2i0");
      stES();
      stIT("p1i1",[$link2],"p2i0");
      stIT("p1i2",[$link3],"p2i0");
      stIT("p1i3",[$link4],"p2i0");
      stIT("p1i4",[$link5],"p2i0");
      stIT("p1i5",[$link6],"p2i0");
      stES();
      stES();
      stEM();
      //-->
      </script>
      I use it to make a tree structure (like windows) but I want the topics to be the one's from my database.

      $link obvisualy has to be replaced by the javascript var :)

      Comment

      Working...