| View previous topic :: View next topic |
| Author |
Message |
starwars
Joined: 03 Dec 2008 Posts: 2
|
Posted: Fri Dec 12, 2008 10:01 pm Post subject: javascript and php combination ---will work or not...help me |
|
|
<html>
<script language ="javascript">
function myfunction()
{
<?
echo "Hello How are You";
?>
}
</script>
<body>
<?
echo "<form>";
echo "<input type=\"button\" onclick=\"myfunction()\" value=\"Call function\">";
echo "</form>";
?>
</body>
</html>
will the above code work....when i try, it gives error
Thanks in advance |
|
| Back to top |
|
 |
tommytx
Joined: 17 Oct 2004 Posts: 23
|
Posted: Mon Jan 05, 2009 3:29 am Post subject: |
|
|
Try this... works for me..
<html>
<script>
function myfunction() {
<? echo 'alert("Hello How are You")'; ?>
}
</script>
<body>
<? echo '<input type="button" onclick="javascript:myfunction()" value="Call function">'; ?>
</body>
</html> |
|
| Back to top |
|
 |
tommytx
Joined: 17 Oct 2004 Posts: 23
|
Posted: Mon Jan 05, 2009 3:32 am Post subject: |
|
|
This works also in case you need all that form stuff in there.
<html>
<script>
function myfunction() {
<? echo 'alert("Hello How are You")'; ?>
}
</script>
<body>
<?
echo '<form>';
echo '<input type="button" onclick="javascript:myfunction()" value="Call function">';
echo '</form>';
?>
</body>
</html> |
|
| Back to top |
|
 |
tommytx
Joined: 17 Oct 2004 Posts: 23
|
Posted: Mon Jan 05, 2009 3:35 am Post subject: |
|
|
echo "Hello How are You";
Bottom line is once php writes the html file, and later you click the button.. trust me php is long gone and is still on your server.
The html file no longer has access to php commands to write anything..
So you must set it up to do the writing later with a javascript command for later when you push the button..
Hope this makes sense. |
|
| Back to top |
|
 |
johnreynolds10
Joined: 17 Aug 2009 Posts: 1
|
Posted: Mon Aug 17, 2009 5:36 pm Post subject: |
|
|
| tommytx wrote: | echo "Hello How are You";
Bottom line is once php writes the html file, and later you click the button.. trust me php is long gone and is still on your server.
The html file no longer has access to php commands to write anything..
So you must set it up to do the writing later with a javascript command for later when you push the button..
Hope this makes sense. |
thank you. I was also confused. Now thanks to your post. Everything is clear now. Now I understand that I must always set it up to for javascript later... |
|
| Back to top |
|
 |
leahmarie
Joined: 31 Jul 2009 Posts: 60
|
Posted: Wed Feb 10, 2010 6:26 pm Post subject: |
|
|
| I guess php and javascript can get along well if the coding and scripting is right |
|
| Back to top |
|
 |
|