geekisthenewsexy Posted October 31, 2010 Share Posted October 31, 2010 hey guys,i'm back with a new prob.. i have an image here that when clicked using onclick, will open a window and sort of pass the php values to the window. okay,it's confusing but perhaps this will help you understand. let me break it down. this is what the image code looks like. i have placed this inside the php echo. <img src="images/edit.png" alt="Edit rooms" width="16" height="16" onclick="window.open(\'edit.php?course='.$row['c_name'].'&year='.$row['year'].'&block='.$row['block'].'\',\'width=300, height=200, menubar=yes\')"/> now my problem is i can't seem to get all three of the values, c_name,year and block to be posted on the window.. here's the code on edit.php: <?php include("dbcon.php"); $course = $_GET['c_name']; $year = $_GET['year']; $block = $_GET['block']; ?> <html> <body> Course:<input type="text" name="course" value="<?php echo $course;?>"><br> Year:<input type="text" name="year" value="<?php echo $year;?>"><br> Block:<input type="text" name="block" value="<?php echo $block;?>"><br> </html> i have already used $_GET as you can see but only year and block appear on the form. i get a notice saying that c_name is an undefined index. i am really confused and i don't know what the problem is. i hope you guys can help me.. :-\ Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/ Share on other sites More sharing options...
OldWest Posted October 31, 2010 Share Posted October 31, 2010 there is no value being stored into c_name thus its undefined. are you pulling the c_name from a table? Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/#findComment-1128596 Share on other sites More sharing options...
geekisthenewsexy Posted October 31, 2010 Author Share Posted October 31, 2010 hi, thanks for replying. well yes, it's from a table.. Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/#findComment-1128598 Share on other sites More sharing options...
revraz Posted October 31, 2010 Share Posted October 31, 2010 Your PHP Echo is: <img src="images/edit.png" alt="Edit rooms" width="16" height="16" onclick="window.open(\'edit.php?course='.$row['c_name'].'&year='.$row['year'].'&block='.$row['block'].'\',\'width=300, height=200, menubar=yes\')"/> But your code looks for: $course = $_GET['c_name']; So change your echo from ?course= to ?c_name= or change your code to $course = $_GET['course']; Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/#findComment-1128600 Share on other sites More sharing options...
MPeter Posted October 31, 2010 Share Posted October 31, 2010 /edit: oh, it's solved Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/#findComment-1128601 Share on other sites More sharing options...
geekisthenewsexy Posted October 31, 2010 Author Share Posted October 31, 2010 wow guys, you just saved me! thanks! Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/#findComment-1128603 Share on other sites More sharing options...
revraz Posted October 31, 2010 Share Posted October 31, 2010 No problem, mark as solved please. Quote Link to comment https://forums.phpfreaks.com/topic/217342-how-to-pass-all-three-php-values-from-one-window-to-another/#findComment-1128613 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.