sivanath.nagendran Posted December 7, 2006 Share Posted December 7, 2006 Need for help Implement Javascript in my PHP file I am newbie to Javascript and also PHP. Can anyone pls tell me how to Use javascript into php coding file also I need one sample program (simple program combines of PHP and Javascript). Pls clarify the basic concept of using PHP with Javascript. I already know about PHP coding.Millions of thanks for yours helpBy Sivanath.N Quote Link to comment Share on other sites More sharing options...
trq Posted December 7, 2006 Share Posted December 7, 2006 What do you want to do? Javascript can be placed in your file just as html is, your question is very vague. Quote Link to comment Share on other sites More sharing options...
sivanath.nagendran Posted December 7, 2006 Author Share Posted December 7, 2006 Sorry I dont know anything about Javascript. Can you show me one simple example for using JS in PHP. Sorry for the mistake in my previous mail also my English Quote Link to comment Share on other sites More sharing options...
trq Posted December 7, 2006 Share Posted December 7, 2006 [code]<html> <head> <title>test</title> <scripting language="javascript"> function foo() { document.write("this is foo"); } </script> </head> <body onload='foo();'><?php echo "this is php";?></html>[/code] Quote Link to comment Share on other sites More sharing options...
sivanath.nagendran Posted December 7, 2006 Author Share Posted December 7, 2006 Hi thorpe I had tried your program but still it's not workinh?what will do now? pls help me? Quote Link to comment Share on other sites More sharing options...
trq Posted December 7, 2006 Share Posted December 7, 2006 Look, that was a simple untested example. The point is, javascript is just like html in that it can be mixed in or outputed with php. Unless you have something specific you want to do I don't see the point.Anyway... i think the error in my example is this....[code]<scripting language="javascript">[/code]should be...[code]<script language="javascript">[/code] Quote Link to comment Share on other sites More sharing options...
sivanath.nagendran Posted December 8, 2006 Author Share Posted December 8, 2006 Thank you Thorpe it's working well now. Pls point me to right direct from now in Javascript, which website is better for learning Javascript. Pls suggest some site's Id for meBySivanath.N Quote Link to comment Share on other sites More sharing options...
mithu_sree Posted December 8, 2006 Share Posted December 8, 2006 http://www.w3schools.com/js/http://www.tizag.com/javascriptT/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.