I got question from my student :
“Is it possible to try PHP5 and Oracle ? I already have working Xampp in my computer .
I my self install Oracle XE on my computer and grant access for my student .
But I have problem when installing Oracle Client , Oracle XE client need 256 MB memory
Since other plugin takes it and make actual memory to 254 MB.
After reading “The Underground PHP and Oracle Manual ” I got proper solution for my student :
1. Download Oracle instant client for windows
2. Extract the file and put all extracted file into one folder , ex : C:\myoracle10
3. Setting PATH
Right Click on My Computer Icon and choose Properties

Choose Environment Variables

You can edit existing “PATH” variables by double clicking PATH line

Add C:\myoracle10 plus ” ; ” sign

Click OK to save
4. Tell PHP to load oracle extension
Open php.ini in apache/bin folder

Uncomment line php_oci8.dll

Restart XAMPP
Test the connection by running this file : (save as oracle.php)
$c = oci_connect(‘hr’, ‘palcomtech’, ‘//localhost/XE’);
$s = oci_parse($c, ’select city from locations’);
oci_execute($s);
while ($res = oci_fetch_array($s)) {
echo $res['CITY'] . ”
“;
}
oci_close($c);
Test it in localhost
You should see city names if no error found .
Congratulation
- xampp oracle
- oracle xampp
- xampp oracle windows
- xampp oracle xe
- xampp with oracle
- xampp oracle 10g
- xamp oracle
- xampp y oracle
- xampp oracle instant client
- xampp for oracle
- instal oracle into xampp
- oracle xe instant client
- xampp php oracle
- xampp and oracle
- xampp oracle php
- xampp windows oracle
- oracle xe xampp
- xampp con oracle
- xampp client
- oracle on xampp
- oracle xe client
- oracle php xampp
- oracle 10g xampp
- oracle xampp windows
- php oracle xampp
- oracle instant client xampp
- oracle for xampp
- xampp instantclient
- oracle with xampp
- xampp com oracle
- php oracle on xampp
- xampp connect oracle
- konfigurasi xampp dan oracle 10g express
- oracle express instant client
- xammp oracle
- oracle xe
- xampp oracle client
- oracle and xampp
- instant client oracle xe
- xampp para oracle
- xampp oracle 10
- oracle no xampp
- how to use xampp with oracle
- setting oracle client in windows
- xampp oraclexe
- www rasyid net setting-oracle-xe-instant-client-with-xampp-and-w
- xampp working with oracle
- oracle express xampp
- xampp with oracle 10g
- xampp oracle qindows
Thanks a lot!
Very useful post.