View Single Post
Join Date: Aug 2005
Posts: 87
Reputation: TopDogger is an unknown quantity at this point 
Solved Threads: 5
TopDogger's Avatar
TopDogger TopDogger is offline Offline
Junior Poster in Training

Re: how to use php with java script

 
0
  #3
May 19th, 2008
PHP is server-side code. It runs on the server and is executed before a script is sent to the user.

JavaScript is typically used as client-side code. It runs in a user's browser and is executed after the user's browser processes the script.

You can use PHP to generate JavaScript cide, but other than that, they do not interact with each other.
Reply With Quote