LexHammer Posted February 9, 2011 Share Posted February 9, 2011 Hello, i have this php code. Its for sms insertion of links in to table <table border="1"> <?PHP $db_user = 'user'; $db_pass = 'pass'; $db_name = 'name'; $db_host = 'localhost'; if(mysql_connect($db_host,$db_user,$db_pass)) { mysql_select_db($db_name); mysql_query("CREATE TABLE IF NOT EXISTS smsads(id bigint unsigned primary key auto_increment, link varchar(255), fromnum varchar(60))"); $res = mysql_query("SELECT * FROM smsads ORDER BY id DESC LIMIT 10"); while($row = mysql_fetch_object($res)) { $http_link = $row->link; if(strstr($http_link, 'http') === FALSE) $http_link = 'http://'.$http_link; echo "<tr><td><a href=\"{$http_link}\" target=\"_blank\">{$row->link}</a></td></tr>"; } } ?> </table> The problem is that i use tpl files for the visual part and all my other tables are in tpl. How can i insert the table above in my tpl file, whitout loosing its functions? Quote Link to comment https://forums.phpfreaks.com/topic/227149-insert-php-table-code-in-tpl-file/ Share on other sites More sharing options...
ChemicalBliss Posted February 9, 2011 Share Posted February 9, 2011 load the tpl file with file() or fopen(). in your tpl file there should be a string that you can "replace" eg: <!--//REPLACEME//--> then once you fopen/file() the tpl you would use str_replace("<!--//REPLACEME//-->", $table_result, $tpl_file); Then echo the result of the str_replace(). You should only really echo Once in your code, ever. Everything else should be in a variable up until that point, then you would not have this problem as you would already being doing what i just said with all your tpl files . So you will have to change that echo to a variable decleration: <table border="1"> <?PHP $db_user = 'user'; $db_pass = 'pass'; $db_name = 'name'; $db_host = 'localhost'; if(mysql_connect($db_host,$db_user,$db_pass)) { mysql_select_db($db_name); mysql_query("CREATE TABLE IF NOT EXISTS smsads(id bigint unsigned primary key auto_increment, link varchar(255), fromnum varchar(60))"); $res = mysql_query("SELECT * FROM smsads ORDER BY id DESC LIMIT 10"); $table_content = null; while($row = mysql_fetch_object($res)) { $http_link = $row->link; if(strstr($http_link, 'http') === FALSE) $http_link = 'http://'.$http_link; $table_content .= "<tr><td><a href=\"{$http_link}\" target=\"_blank\">{$row->link}</a></td></tr>"; } } echo $table_content; ?> </table> hope this helps Quote Link to comment https://forums.phpfreaks.com/topic/227149-insert-php-table-code-in-tpl-file/#findComment-1171917 Share on other sites More sharing options...
LexHammer Posted February 10, 2011 Author Share Posted February 10, 2011 Thank you! Quote Link to comment https://forums.phpfreaks.com/topic/227149-insert-php-table-code-in-tpl-file/#findComment-1172221 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.