Posts by eCrespin • 86 points
5 posts
- 
		1 votes1 answer98 viewsA: How to resolve Fatal error: Call to Undefined Function mysqli_connect() inThe server you are running the code from does not have the module php_mysqli installed/enabled. Following answers of this post, if you are using linux (Ubuntu, Mint, debian) just run the following… 
- 
		1 votes1 answer38 views
- 
		1 votes1 answer39 viewsA: PHP - Getsqlvaluestring - What is the purpose of this function, generated by Dreamweaver?I don’t know why Dreameaver created this function (I don’t use it), but she does the following: Receives a value ($theValue) and passes through the function mysql_real_escape_string, that makes some… 
- 
		1 votes1 answer20 views
- 
		0 votes1 answer49 viewsA: How to write all columns of an SQL table + phpYou can use a foreach: while ($row = ibase_fetch_object($rc)) { foreach($row as $coluna) { echo $coluna; } } In case you need to also put the column name followed by the value, for example: echo…