Ara 7 2011
How to php linux .htaccess rule. Hide .php extension with url rewriting using .htaccess redirect htm , html to php extention. .htaccess kuralı rule nasıl yazılır.
.htaccess rule örnekleri aşağıdaki gibidir. Örneğin http://localhost/test.htm böyle bir istekte test.htm de php kodu çalıştırmak Options +FollowSymlinks RewriteEngine on RewriteRule ^(.*).htm$ $1.php [nc] Options +FollowSymlinks RewriteEngine on RewriteRule ^product-([0-9]+).html$ products.php?id=$1 product.php?id=5 olan isteği porduct-5.html ile çağırdığımızda nasıl çalışır http://localhost/product-5.html product.php?id=5 arkaplanda bu çalışır
Oca 18 2012
Php Array örneği ? Php array example
Arrays are used in any programming language. You can imagine an array as a long box with many the same compartments, like this |___|___|___|___|___|.What ever you put in a compartment is its value. The following array |_a_|_b_|_c_|_d_|_e_| contains characters a,b,c,d,e. To access a value you should know in which compartment it is placed. For example […]
Devamı
By Burhan KARADERE • Programlama - Software • 0 • Tags: ? Php ?, array, how to, kullanımı, use