Jump to content

Recommended Posts

I know there is a snippet about this in the PHP user manual, but that isn't working for me so I've come for help.

 

I am trying to get the return value of a javascript confirm box to be passed back to php.

 

 

 <input name="delete" type="submit" class="bluebox" id="delete" value="Delete Entry" onClick="confirmDelete()" />

<script language='javascript'>
function confirmDelete() {
  var answer = confirm("Delete Entry")

}
</script>


<?php
if ($_GET['answer']) == "true") {

echo "Deleting?";


} ?>		

 

What am I doing wrong?

Link to comment
https://forums.phpfreaks.com/topic/63086-passing-variables-from-javascript-to-php/
Share on other sites

You can't interact PHP and javascript like that. PHP is compiled, ran, and completed before javascript even hits the output.

 

However what you can do is use GET DATA

 

<script language='javascript'>

function confirmDelete()

{

    var answer = confirm("Delete Entry");

    if (answer)

    {

        location.href = 'thisfile.php?delete=answer';

    }

}

</script>

 

You have to actually reference it to another page, or the same page within post/get information.

I had something like this that I needed before. I did something like

 

<?php

$wid="<script>document.write(screen.width);</script>";

$hig="<script>document.write(screen.height);</script>";

?>

 

I don't know if

$answer="<script>document.write(answer);</script>";

would work too..

:D Works too :)

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.