PHP forums, MySQL forums, Web Development resources

Home PageHome    PHP ResourcesTopic List    FAQFAQ    SearchSearch    MemberlistMemberlist    UsergroupsUsergroups 
 RegisterRegister
    ProfileProfile    Log in to check your private messagesLog in to check your private messages    Download the RSS Reader RSS Feed Download the RSS Reader RSS for this forum Log inLog in 

PHP Forum :: MySQL Forum :: Java Script Forum



javascript and php combination ---will work or not...help me

 
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP Articles Tutorials and Scripts
View previous topic :: View next topic  
Author Message
starwars



Joined: 03 Dec 2008
Posts: 2

PostPosted: Fri Dec 12, 2008 10:01 pm    Post subject: javascript and php combination ---will work or not...help me Reply with quote

<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
View user's profile Send private message
tommytx



Joined: 17 Oct 2004
Posts: 23

PostPosted: Mon Jan 05, 2009 3:29 am    Post subject: Reply with quote

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
View user's profile Send private message
tommytx



Joined: 17 Oct 2004
Posts: 23

PostPosted: Mon Jan 05, 2009 3:32 am    Post subject: Reply with quote

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
View user's profile Send private message
tommytx



Joined: 17 Oct 2004
Posts: 23

PostPosted: Mon Jan 05, 2009 3:35 am    Post subject: Reply with quote

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
View user's profile Send private message
johnreynolds10



Joined: 17 Aug 2009
Posts: 1

PostPosted: Mon Aug 17, 2009 5:36 pm    Post subject: Reply with quote

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
View user's profile Send private message
leahmarie



Joined: 31 Jul 2009
Posts: 60

PostPosted: Wed Feb 10, 2010 6:26 pm    Post subject: Reply with quote

I guess php and javascript can get along well if the coding and scripting is right
Back to top
View user's profile Send private message
Display posts from previous:   
WeberTrivia Questions WeberTrivia Questions
 Think you are smart? Prove it!. Try your skills with these questions :
 WeberTrivia QuestionsRecursive arrays and multi-dimensional arrays are one and the same. (PHP and MySQL)
 WeberTrivia QuestionsThe \"cache_dir\" tag of the squid configuration has a default of /var/spool/squid. (Linux)

WeberTrivia Questions



PHP Code Examples
 Stream diffrent sizes of images from a single image to save disk space.
 JavaScript dropdown list menu to switch any page.
 Dump the contents of a PHP variable in html format with a recursive list of subfolders and files from a given root directory.
 PHP Dump in html format the contents of one array variable with a recursive list of the nested array variables inside.
 Link Extractor - This function is used to extract links from a given URL. This will convert relative path into absolute path and also remove PHPSESSID stuff.
 Building a Dynamic Form using Javascript and innerHTML. Add form elements in realtime without refreshing the page.
 A PHP Calendar function with CSS : add a cool calendar to any php page by just adding a calendar class based function.
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP Articles Tutorials and Scripts All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Powered by phpBB © 2001, 2005 phpBB Group
PHP Forum :: MySQL Forum :: Java Script Forum