Jump to content

php within my java script not working


helloise

Recommended Posts

<script type="text/JavaScript">

  function refreshPage(s)

  {

      window.location.reload();

      if((s.options[s.selectedIndex].value) = "zed=catcher")

      {

            alert (s.selectedIndex); //this is showing

            <?PHP

            //the next lines aint

                echo $form['service_code']->renderLabel();

                echo $form['service_code']->renderError();

                echo $form['service_code'];

            ?>

      }

  }

</script>

please help?

thanks

Link to comment
https://forums.phpfreaks.com/topic/224309-php-within-my-java-script-not-working/
Share on other sites

Is error reporting turned on?  If it's off, you may want to turn it on to see if you get any errors.

 

If no errors, you can always write

 

print_r($form); 

in the area you're writing those echo statements to see if the variable is set properly and has values;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.