mnybud Posted August 27, 2006 Share Posted August 27, 2006 I am new to PHP and trying merge 2 existing PHP scripts together in a very minor way. I have a script that looks like this:<? include_once(dirname(__FILE__) . "/class.script.php"); $name = "changeme"; etc.......?> The other script I have has this to print the names that I am trying to display in the $name= field.<?php info('name'); ?>If I put that right above the first script like below it displays the names just fine.<?php info('name'); ?><? include_once(dirname(__FILE__) . "/class.script.php"); $name = "changeme"; etc.......?> BUT if I put it in like below where I want it to display then it does not work. <? include_once(dirname(__FILE__) . "/class.script.php"); $name = "<?php info('name'); ?>"; etc.......?> I am guessing there is a simple way to write this to make it work but I cant figure it out..... ???Any help? Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/ Share on other sites More sharing options...
AndyB Posted August 27, 2006 Share Posted August 27, 2006 [code]include_once(dirname(__FILE__) . "/class.script.php");$name = info('name');[/code] Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/#findComment-80952 Share on other sites More sharing options...
mnybud Posted August 27, 2006 Author Share Posted August 27, 2006 yea I tried that already but it does not work. any other suggestions? Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/#findComment-80961 Share on other sites More sharing options...
AndyB Posted August 27, 2006 Share Posted August 27, 2006 Well, we need more clues. What are you expecting to happen? What is it that "doesn't work"? What does happen? Do you get any error or warning messages? What's in the included file? Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/#findComment-80970 Share on other sites More sharing options...
mnybud Posted August 27, 2006 Author Share Posted August 27, 2006 sorry here is some more info.I am not getting any errors but instead of pulling the correct page/content from my site it always just loads the index page unless I set it manually. Here is more of the code:<!-- begin footer --></div><?php get_sidebar(); ?></div><?php footer(); ?><--this works--><?php info('name'); ?><--this works--><? include_once(dirname(__FILE__) . "/class.script.php"); $name = info('name');if (isset($_GET['name'])) { $name = $_GET['pagename']; } $myscript = new pagefetcher(); $cnt = $myscript->FetchFullName($name); if ($cnt) { print $cnt; }?><!-- end footer -->Let me know if this gives any clues....thanks for your time! Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/#findComment-80985 Share on other sites More sharing options...
mnybud Posted August 27, 2006 Author Share Posted August 27, 2006 anyone have any ideas?? Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/#findComment-81096 Share on other sites More sharing options...
mnybud Posted August 27, 2006 Author Share Posted August 27, 2006 anyone? I know one of you PHP whizes can help. Link to comment https://forums.phpfreaks.com/topic/18765-easy-question-i-think/#findComment-81229 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.