0 mademoiselle24 7 Years Ago hello there :) this is my first time to join a forum. i just want to ask how can i make a window (actually like a pop screen for "help") in PHP. by the way i am using code igniter. thanks :) php
0 Kieran Y5 8 7 Years Ago You would need to use JavaScript, not PHP. PHP is for server-side scripting, not client-side like JavaScript. Kieran :)
0 chrishea 182 7 Years Ago You can do a simple po-up like the following: <a href="delete.page?id=1" onclick="return confirm('Are you sure you want to delete?')">Delete</a> If you want something more complex like a help window, you might want to look at using a JQuery plug-in.
0 Kieran Y5 8 7 Years Ago You can do a simple po-up like the following: <a href="delete.page?id=1" onclick="return confirm('Are you sure you want to delete?')">Delete</a> If you want something more complex like a help window, you might want to look at using a JQuery plug-in. You could easily make a popup dialog without JQuery... Anyway, this isn't really the right category to be talking about this, it should really be moved to the JavaScript category...