Profile
Achievement

alberomo's Recent SnippetsTagged php
- All /
« Prev 1 Next »
Script para usar la librerÃa PHP Mailer para enviar un mail usando gmail como servidor SMTP.
Se debe descargar la librerÃa phpMailer (www.phpmailer.worxware.com).
Se usa una plantilla html para maquetar el cuerpo del mensaje.
Desde un serv...
0
1008
posted 13 years ago by alberomo
It uses a variable with a RecordSet. db_query PHP Functions can be used to have the REcordSet(http://snipplr.com/view/59419/php-connexion-to-mysql-ddbb-sql-query-and-creation-of-a-record-set/).
Then fill the tables with the data of the RecordSet.
0
855
posted 13 years ago by alberomo
PHP code for connect to MySql, create a SQL query and a Record Set from it.
Note: If you use ADODB php library, write db_query() instead of mysql_query().
0
1174
posted 13 years ago by alberomo
It uses a variable with a RecordSet from a ADOdb Library (Library must be downloaded). db_query PHP Functions can be used to have the REcordSet(http://snipplr.com/view/59379/dbquery-php-function-for-ddbb-queries-with-adodb-library/)
Then uses ADOD...
0
776
posted 13 years ago by alberomo
A PHP function to get a Record Set using ADOdb Library.
It takes the (SQL) query as an argument. For INSERT queries. NOTE: A call for a query.
It also need next variables: $dbhost,$dbuser,$dbpasswd,$dbname (data from de bbdd connexion). Can be...
0
1027
posted 13 years ago by alberomo
A PHP function to get a Record Set using ADOdb Library.
It takes the (SQL) query as an argument. For SELECT,UPDATE and DELETE queries.
It also need next variables: $db_host,$db_user,$db_passwd,$db_name (data from de bbdd connexion). Can be dec...
0
955
posted 13 years ago by alberomo
Transform $_GET or $_POST in a string to add to an URL and send variables and values.
Argument: Receive an $_GET O $_POST array function.
Returns: variables concatenation to add to the URL.
0
1003
posted 13 years ago by alberomo