Jump to content

Having javascript window popup passing variable to another page


Recommended Posts

Hi everyone.

I'm trying to use javascript to pass a variable to another page, but i can't seem to get the coding correct. i'd appreciate some assistance. There doesn't seem to be anything wrong with the code in dreamweaver, however when viewed in a browser, the link doesnt open the editrecord.php page. thank you.

 

echo "<tr>";
echo '<td nowrap>' . $result['ContactName'] . '</td>'
echo '<td nowrap>' . $result['ContactTelephone'] . '</td>';
echo '<td nowrap>' . $result['ContactPosition'] . '</td>';
echo '<td><a href=javascript:OpenPopup("er_editrecord.php?ContactID=' . $result['ContactID'] .')"  >Edit</a></td>';
echo "</tr>"; 

Your href should have quotes around it + you really should be using an onclick at the least for nice degrading if they don't have JS turned on.

<?php
echo "<tr>";
echo '<td nowrap>' . $result['ContactName'] . '</td>'
echo '<td nowrap>' . $result['ContactTelephone'] . '</td>';
echo '<td nowrap>' . $result['ContactPosition'] . '</td>';
echo '<td><a href="er_editrecord.php?ContactID=' . $result['ContactID'] . '" onclick="OpenPopup(\'er_editrecord.php?ContactID=' . $result['ContactID'] .'\'); return false;">Edit</a></td>';
echo "</tr>"; 

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.