<?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>CodeBlog &#187; MySQL</title>
	<atom:link href="http://www.codeblog.co.uk/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codeblog.co.uk</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2012 21:02:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to resolve Fatal error: Class &#8216;mysqli&#8217; not found / Unable to load dynamic library &#8216;c:\PHP\ext\php_mysql.dll&#8217; &#8211; Access is denied.</title>
		<link>http://www.codeblog.co.uk/2008/07/31/web-platforms/how-to-resolve-fatal-error-class-mysqli-not-found-unable-to-load-dynamic-library-cphpextphp_mysqldll-access-is-denied/</link>
		<comments>http://www.codeblog.co.uk/2008/07/31/web-platforms/how-to-resolve-fatal-error-class-mysqli-not-found-unable-to-load-dynamic-library-cphpextphp_mysqldll-access-is-denied/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 10:39:25 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Fixes & Tweaks]]></category>
		<category><![CDATA[Web Platforms]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[MySQLi]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/2008/07/31/uncategorized/how-to-resolve-fatal-error-class-mysqli-not-found-unable-to-load-dynamic-library-cphpextphp_mysqldll-access-is-denied/</guid>
		<description><![CDATA[After much digging around on the net and of course Google I managed to cobble together a trouble shooting process to find out why I was getting the error message: Fatal error: Class &#8216;mysqli&#8217; not found in E:\mysite\sql.php on line 17 PHP Warning: PHP Startup: Unable to load dynamic library &#8216;c:\PHP\ext\php_mysql.dll&#8217; &#8211; Access is denied. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library &#8216;c:\PHP\ext\php_mysqli.dll&#8217; &#8211; Access is denied. in Unknown on line 0 PHP Fatal error: Class &#8216;mysqli&#8217; not found in E:\mysite\sql.php on line 17 The serverï¿½setupï¿½that I was getting this error on was: &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2008/07/31/web-platforms/how-to-resolve-fatal-error-class-mysqli-not-found-unable-to-load-dynamic-library-cphpextphp_mysqldll-access-is-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get a list of a tables field / column names from MySQL using PHP &#8211; getFieldNames() Function</title>
		<link>http://www.codeblog.co.uk/2008/05/13/web-development/how-to-get-a-list-of-a-tables-field-column-names-from-mysql-using-php-getfieldnames-function/</link>
		<comments>http://www.codeblog.co.uk/2008/05/13/web-development/how-to-get-a-list-of-a-tables-field-column-names-from-mysql-using-php-getfieldnames-function/#comments</comments>
		<pubDate>Tue, 13 May 2008 11:09:38 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/2008/05/13/uncategorized/how-to-get-a-list-of-a-tables-field-column-names-from-mysql-using-php-getfieldnames-function/</guid>
		<description><![CDATA[A simple function to replicate the funcationality of the depreciated mysql_list_fields() function. It returns a simple array with a numeric index of the column / field names. $database &#8211; String &#8211; The database you want to use $connect_string &#8211; String &#8211; Your connection string $table &#8211; String &#8211; The name of the table you wish to list the fields from [code lang="php"] function getFieldNames($database,$connect_string,$table){ $query_getfields = "SHOW COLUMNS FROM ".$table; $getfields = mysql_query($query_getfields, $connect_string) or die(mysql_error()); $row_getfields = mysql_fetch_assoc($getfields); $all_getfields = mysql_query($query_getfields); $fields = array(); do { array_push($fields,$row_getfields['Field']); } while($row_getfields = mysql_fetch_assoc($getfields)); return $fields; }[/code]]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2008/05/13/web-development/how-to-get-a-list-of-a-tables-field-column-names-from-mysql-using-php-getfieldnames-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

