2,113 Posted Topics
Re: 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 | |
Re: [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' | |
Re: Clipmarks, so the user can save the pages whose is interested in. | |
Re: 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 ' … | |
Re: 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 … | |
Re: 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 :) | |
Re: You mean a tag cloud box, related to the searched word? | |
Re: 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 :) | |
Re: 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 … | |
Re: 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 … | |
Re: 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 :) | |
Re: 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] | |
Re: 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 :) |
The End.