Tag: Mysql Php

php
Mike V asked:


I was just thinking the other day about the subject and i wonder if you could achieve AI with php and mysql. The php side would be like the thinking and sensing part of the brain and the mysql side would be the memory and storage part of the brain. Could it be possible?

Tags: , ,
php
edwinbiasbas asked:


For example… I do the mysql connect php mysql connect scripts before the display scripts (using macromedia dreamweaver) how can I move to an specific location to fit on the fields on the background form.

Tags: , ,
php and mysql
matthewlowery asked:


I really want to make a site like Deviantart, although the register can probably come later. I have no idea about Mysql or PHP.

Tags: , ,
php and mysql
oasisjoel asked:


If not, do you know any free web host that is free that I could practice my mysql, php and asp .net??

Tags: , ,
php and mysql
pbinfinity asked:


I am trying to find out the correct most efficient way to deal with mysql connections in PHP. My goal is to make sure I do not run out of connections. I have read that using persistent connections is a way to run out of connections if you have too many users. If opening and closing connections is not time intensive, will that be a better way to manage them?

Example:
$conn = mysql_connect(…);
mysql_select_db(…, $conn);

$info = mysql_query($query, $connection);

/* do a bunch of stuff to render the results to the screen */

mysql_close($conn);

If there is a lot of work to render to the screen, is it a better deal to save the query results off to another variable, free the resource memory and then close the connection before ever rendering to the screen?

Code examples would help, and documentation about how you know it is the best way is also preferred.

Thanks.

Tags: , ,
Learn PHP
Will V. Davis asked:


For making PHP games, having my own server and stuff like that.

Tags: , ,
Back to top