<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>前端之路 &#187; height</title>
	<atom:link href="http://www.simcn.com/tag/height/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simcn.com</link>
	<description>网站开发, 前端开发, 高性能前端开发</description>
	<lastBuildDate>Tue, 27 Mar 2012 04:26:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>用PHP生成MYSQL数据字典</title>
		<link>http://www.simcn.com/dict-tools</link>
		<comments>http://www.simcn.com/dict-tools#comments</comments>
		<pubDate>Sat, 12 Feb 2011 02:09:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[默认分类]]></category>
		<category><![CDATA[Author Mark]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[Set Server]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.simcn.com/?p=380</guid>
		<description><![CDATA[写文档什么是最麻烦的事情. 能交给程序做就让程序做吧. 于是有了这个生成程序 PHP代码 /* Name: 生成mysql数据字典 URI: http://www.simcn.com/dict-tools Version: 1.0 Author: Mark.Chen Author URI: http://www.simcn.com */ //Set Server $dbserver="localhost"; $dbusername="root"; $dbpassword="max197997"; //接收get参数 if($_GET['db']==''){ $database = 'oms'; }else{ $database = $_GET['db']; } $mysql_conn=@mysql_connect("$dbserver","$dbusername","$dbpassword") or die("Mysql connect is error."); mysql_select_db($database,$mysql_conn); $result = mysql_list_tables($database,$mysql_conn); mysql_query('SET NAMES utf8',$mysql_conn); while ($tableList = mysql_fetch_array($result)){ $table = $tableList[0]; $field_result= mysql_query("SELECT * [...]]]></description>
		<wfw:commentRss>http://www.simcn.com/dict-tools/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>用于解决iframe自适应高度</title>
		<link>http://www.simcn.com/iframe-auto-height</link>
		<comments>http://www.simcn.com/iframe-auto-height#comments</comments>
		<pubDate>Thu, 18 Jun 2009 08:43:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[默认分类]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://www.simcn.com/2009/06/%e7%94%a8%e4%ba%8e%e8%a7%a3%e5%86%b3iframe%e8%87%aa%e9%80%82%e5%ba%94%e9%ab%98%e5%ba%a6/</guid>
		<description><![CDATA[function reinitIframe(){ var iframe = document.getElementById("frame_content"); try{ var bHeight = iframe.contentWindow.document.body.scrollHeight; var dHeight = iframe.contentWindow.document.documentElement.scrollHeight; var height = Math.max(bHeight, dHeight); iframe.height = height; }catch (ex){} } window.setInterval("reinitIframe()", 1000); 在新浪站上看到的不错，收藏下. 目前我们自己常用的 调用页面. 被调用页面 window.onload = function(){ var height = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); parent.call_frame(height) }]]></description>
		<wfw:commentRss>http://www.simcn.com/iframe-auto-height/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

