Jump to content

Passing Variables from Javascript to PHP


cjosephson

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 :)

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.