
March 31st, 2000, 09:39 AM
|
|
Gödelian monster
|
|
Join Date: Jul 1999
Location: Central Florida, USA
|
|
|
I don't see enough of your code to help you, but essentially, the problem is not with PHP + Javascript. PHP is transparent to Javascript; it is server-side only while Javascript is client-side only. As long as the PHP code outputs syntactically correct HTML and Javascript, the Javascript will execute. The best way to debug this is to output your PHP page to the browser, and then View Source, save that HTML output and debug your Javascript there, then see how you can change your PHP to output the right HTML.
And vice-versa, as long as Javascript is calling the right HREF, etc... PHP will receive http requests and do its business.
|