pop up webpage
Moderator: General Moderators
pop up webpage
How to develop code that will pop up an web page when a button is clicked ???
Re: pop up webpage
That's javascript, not php.
Code: Select all
<input type=submit name=submit value="click me" onClick="javascript: window.open('http://google.com');">
Re: pop up webpage
thanx