2,113 Posted Topics

Member Avatar for noman

If your production server is on a shared hosting you can't change anything in your php.ini file. Otherwise just edit the file with a text editor, save the changes and reload the server. Besides: Linux is more suitable for PHP. Windows is better for ASP and ASP.NET

Member Avatar for cereal
0
151
Member Avatar for The Dude

[QUOTE=scudzilla;414591]Mine is Cinque.... Er.. I dunno about that.[/QUOTE] de hi ho.. ^_^ in Italian language that means "five"! Besides, mine is Zuwarah o_o'

Member Avatar for tygerberg
0
123
Member Avatar for roryt
Member Avatar for MidiMagic
0
185
Member Avatar for ashneet

I was trying your function, it worked for me when I moved [b]ob_get_clean()[/b] to the end, after [b]return $mail_sent[/b]. I believe that ob_get_clean was empting the variable $MESSAGE before the script could send the email. You can try with this little function: [code=php] function hello($name) { ob_start(); echo 'hello ' …

Member Avatar for cereal
0
182
Member Avatar for applegrew

Prabably this login system uses sessions. If the login form use GET instead of POST you can try to build a link to log into the restricted area, from lynx (links or w3m). You need to look the form structure in order to know if there is any kind of …

Member Avatar for cereal
0
98
Member Avatar for Dsiembab

Here you can find some examples: - [url]http://us.php.net/manual/en/function.curl-setopt.php#71313[/url] - [url]http://www.phpbuilder.com/columns/ian_gilfillan20050525.php3?page=2[/url] bye :)

Member Avatar for cereal
0
83
Member Avatar for NetFamous
Member Avatar for EnderX

Or you can also try this script: - [url]http://mikecherim.com/experiments/support/P_php_browser_sniffer.phps[/url] Basically it uses eregi function to identify browsers and platforms. Bye :)

Member Avatar for cereal
0
114
Member Avatar for pbrookee

For my forms I use definition lists (<dl>) instead of tables or divs. I put labels in <dt> and input, textarea, option and select in <dd>. And then I use stylesheets to improve it. This way: [code]<div id="form"> <form method="post" action="check.php"> <dl> <dt><label for="user">User:</label></dt> <dd><input name="user" type="text" class="text" /></dd> <dt><label …

Member Avatar for cereal
0
138
Member Avatar for anthmaina

You can use XSPF, an open source flash music player: - [url]http://musicplayer.sourceforge.net/[/url] Otherwise you need an audio streaming server, there are a lot of solutions, as RealServer and Icecast: - [url]http://www.realnetworks.com/[/url] - [url]http://www.icecast.org/[/url] - [url]http://www.linuxdevcenter.com/pub/a/linux/2001/03/30/streaming_linux2.html[/url] Just search on Google. bye :) P.S. you can also use WinAmp, VLC, XMMS or …

Member Avatar for cereal
0
65
Member Avatar for cmills83

You can point out what selectoris are unused. You can do this with a Mozilla Firefox extention. It is called [b]Dust-me Selectors[/b], just google to find it. Bye :)

Member Avatar for cereal
0
53
Member Avatar for wireshop

You can also use ctype_alnum, this way: [code=syntax]$username = ctype_alnum($_POST['username']) ? $_POST['username'] : NULL; if($username == NULL) { echo 'error message'; } else { echo $username; }[/code]

Member Avatar for cereal
0
113
Member Avatar for Staplerkid

Maybe you can have a look to the source of rand.c - [url]http://lxr.php.net/source/php-src/ext/standard/rand.c[/url] bye :)

Member Avatar for cereal
0
125

The End.