Confirm Dialog Box in PHP

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
Nivedita
Forum Newbie
Posts: 2
Joined: Mon Mar 08, 2010 11:46 pm

Confirm Dialog Box in PHP

Post by Nivedita »

How we can create a confirm dialog box in php and call it in <a> tag ?
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Re: Confirm Dialog Box in PHP

Post by alex.barylski »

Code: Select all

 <a href="javascript&#058;  confirm('Are you sure you want to do something?')">Confirm</a> 
Post Reply