cjkeane Posted March 19, 2011 Share Posted March 19, 2011 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>"; Quote Link to comment https://forums.phpfreaks.com/topic/231053-having-javascript-window-popup-passing-variable-to-another-page/ Share on other sites More sharing options...
Philip Posted March 20, 2011 Share Posted March 20, 2011 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>"; Quote Link to comment https://forums.phpfreaks.com/topic/231053-having-javascript-window-popup-passing-variable-to-another-page/#findComment-1190025 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.