Home
Jul 31
Saturday
Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

php

Integrating eAccelerator Into PHP5 And Lighttpd (OpenSUSE 11.2)
Wednesday, 28 July 2010 12:24

Integrating eAccelerator Into PHP5 And Lighttpd (OpenSUSE 11.2)

This guide explains how to integrate eAccelerator into PHP5 and lighttpd on an OpenSUSE 11.2 system. From the eAccelerator project page: "eAccelerator is a free open-source PHP accelerator, optimizer, and dynamic content cache. It increases the performance of PHP scripts by caching them in their compiled state, so that the overhead of compiling is almost completely eliminated. It also optimizes scripts to speed up their execution. eAccelerator typically reduces server load and increases the speed of your PHP code by 1-10 times."

Read more: http://howtoforge.com/integrating-eaccelerator-into-php5-and-lighttpd-opensuse-11.2

 
php web design
Saturday, 03 July 2010 14:52
dynamicdreamz.com offers Best PHP web design Company & PHP development India Offer Cheapest Hire PHP web developer also provides Outsource Web Design Services India, business catalyst programmers, Affordable custom web site design and web Development for UK, USA, Canada and other Europeans Countries from Surat, Gujarat, India. http://www.dynamicdreamz.com/website_design_company.php

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/0-t82e6CAio/11795

 
hire php developer
Saturday, 03 July 2010 14:49
We offers php development India and hire php developer find php web development India, php web design and also business catalyst programmers more affordable rates.http://www.dynamicdreamz.com/

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/HklO1FcIYEo/11791

 
PHP - AJAX and MySQL
Monday, 21 June 2010 19:32
// The following example will demonstrate how a web page can fetch information from a database with AJAX:


Example Explained - The HTML Page

When a user selects a user in the dropdown list above, a function called "showUser()" is executed. The function is triggered by the "onchange" event:











Person info will be listed here.





The showUser() function does the following:

* Check if a person is selected
* Create an XMLHttpRequest object
* Create the function to be executed when the server response is ready
* Send the request off to a file on the server
* Notice that a parameter (q) is added to the URL (with the content of the dropdown list)

The PHP File

The page on the server called by the JavaScript above is a PHP file called "getuser.php".

The source code in "getuser.php" runs a query against a MySQL database, and returns the result in an HTML table:
$q=$_GET["q"];

$con = mysql_connect('localhost', 'peter', 'abc123');
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("ajax_demo", $con);

$sql="SELECT * FROM user WHERE id = '".$q."'";

$result = mysql_query($sql);

echo "






";

while($row = mysql_fetch_array($result))
{
echo "";
echo "";
echo "";
echo "";
echo "";
echo "";
echo "";
}
echo "
Firstname Lastname Age Hometown Job
" . $row['FirstName'] . "" . $row['LastName'] . "" . $row['Age'] . "" . $row['Hometown'] . "" . $row['Job'] . "
";

mysql_close($con);
?>

Explanation: When the query is sent from the JavaScript to the PHP file, the following happens:

1. PHP opens a connection to a MySQL server
2. The correct person is found
3. An HTML table is created, filled with data, and sent back to the "txtHint" placeholder



Truck Games
Sports Games
Beyin

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Cmy78e6i9K0/11705

 
Installation Of ZendOptimizer And IonCubeLoader Using Lighttpd On CentOS
Thursday, 11 March 2010 06:25

Installation Of ZendOptimizer And IonCubeLoader Using Lighttpd On CentOS

This tutorial explains how to enable ZendOptimizer and IonCubeLoader in PHP on a Lighttpd web server on CentOS.

Read more: http://howtoforge.com/installation-of-zendoptimizer-and-ioncubeloader-using-lighttpd-on-centos

 


Taxonomy by Zaragoza Online
Home