| 
		
			| Web Portal [message #152376] | Sun, 01 May 2005 17:22  |  
			| 
				
				|  |  glyde51 Messages: 1827
 Registered: August 2004
 Location: Winnipeg
 
	Karma: 0
 | General (1 Star) |  |  |  
	| Anyone know a web portal I can easily integrate with my current site? 
 No. Seriously. No.
 |  
	|  |  | 
	| 
		
			| Web Portal [message #152377] | Sun, 01 May 2005 17:38   |  
			| 
				
				|  | IRON FART Messages: 1989
 Registered: September 2003
 Location: LOS ANGELES
 
	Karma: 0
 | General (1 Star) |  |  |  
	| Are you talking about things like PHPnuke? 
 
  
 | Quote: |  | 
 Quote from IRC
 <[Digital]> get man_fucking_a_car.mpg
 <[Digital]> ah fuck wrong window
 
 
 | 
 |  
	|  |  | 
	| 
		
			| Web Portal [message #152378] | Sun, 01 May 2005 17:39   |  
			| 
				
				|  |  glyde51 Messages: 1827
 Registered: August 2004
 Location: Winnipeg
 
	Karma: 0
 | General (1 Star) |  |  |  
	| | IRON FART |  | Are you talking about things like PHPnuke?
 
 | 
 
 Something like that I suppose, PHP of course, I'm looking for something that I can either integrate onto my site using PHP includes, or something I can intergrate my site into.
 
 Man, I love that word, integrate.
 
 No. Seriously. No.
 |  
	|  |  | 
	|  | 
	| 
		
			| Web Portal [message #152384] | Sun, 01 May 2005 18:12   |  
			| 
				
				|  |  glyde51 Messages: 1827
 Registered: August 2004
 Location: Winnipeg
 
	Karma: 0
 | General (1 Star) |  |  |  
	| I tried all of the above, they all hate me with a passion. 
 Actually, can someone just direct me to a way to write HTML into a MySQL database then a way to put it onto a PHP page? And have it so it's searchable? That would be a nice little tutorial..
 
 Thanks.
 
 No. Seriously. No.
 |  
	|  |  | 
	| 
		
			| Web Portal [message #152390] | Sun, 01 May 2005 19:32   |  
			|  |  
	| I heard JetBox is good with integration. Try taking a look at opensourcecms.com 
 God is the "0wnage". Plain and Simple.
 
 Visit http://www.theoriginalmrbob.com
 
 "If there's one freak to be, it's a Jesus freak"
 
 All your base are belong to us.
 |  
	|  |  | 
	|  | 
	| 
		
			| Web Portal [message #152398] | Sun, 01 May 2005 20:35   |  
			| 
				
				|  |  glyde51 Messages: 1827
 Registered: August 2004
 Location: Winnipeg
 
	Karma: 0
 | General (1 Star) |  |  |  
	| | Quote: |  | Okay, I need some help.
 
 Can someone tell me how I can include the HTML data from a MySQL table? So it would be: http://www.trielite.net/?p=table_name
 
 And then it would include the data from that table in a certain area? (Maybe with PHP includes?)
 
 Can you also explain how the code works?
 
 | 
 
 No. Seriously. No.
 |  
	|  |  | 
	| 
		
			| Web Portal [message #152401] | Sun, 01 May 2005 20:45  |  
			| 
				
				
					|  Beanyhead Messages: 549
 Registered: February 2003
 Location: Kentucky, USA
 
	Karma: 0
 | Colonel | ![beanyhead [at] gmail [dot] com](/theme/Renegade_Forums/images/google.png)  
 |  |  
	| First you need to access the database 
 The variables will have to be set, your host, username, password and the database being used.
 
 Then you'd want to create a table and database, let's name these both "temp" for now.
 
 Two columns, page and html
 
 blah.php?page=whatever
 
 
 
$page = $_REQUEST['page'];
$link = mysql_connect($sql_host, $sql_user, $sql_pass);
mysql_select_db(temp, $link);
$result = mysql_query("SELECT * FROM `temp` WHERE page='$page'");
$myrow = mysql_fetch_array($result);
echo $myrow[html];
 Note: this is a VERY simple sample of what code would be used.
 |  
	|  |  |