Forum: PHP Jul 4th, 2004 |
| Replies: 1 Views: 3,577 Hey all! Sorry I haven't been around much lately. Hope things are well cscgal! :cheesy:
I'm working on a new function for the admin control panel of my site.
When a user logs in, it checks... |
Forum: PHP Jan 24th, 2004 |
| Replies: 21 Views: 8,936 I agree, this is the best book that I owned when starting out with PHP/MySQL.
I don't use it much anymore, as I only really use a function reference manual when I need to remember what exactly a... |
Forum: PHP Dec 13th, 2003 |
| Replies: 12 Views: 8,215 I just upgraded my forums today from PHPbb to vBulletin, and first off, I love VB... :)
I can only imagine with the depth of the code involved in VB that it would take an entirely new group of... |
Forum: PHP Dec 8th, 2003 |
| Replies: 3 Views: 3,846 If you're still having problems, thow out some of the code you are working with, and we'll have a look. :) |
Forum: PHP Nov 23rd, 2003 |
| Replies: 3 Views: 9,900 I've tried running a script sort of like the one you have posted, NEO, and I haven't been able to make it work...
I've ran it from several different servers, and pointed it to scripts on servers... |
Forum: PHP Nov 20th, 2003 |
| Replies: 25 Views: 10,845 I knew you were refering to Tekmaven... :) I was agreeing with you... ;) |
Forum: PHP Nov 20th, 2003 |
| Replies: 3 Views: 9,900 My question/issue is that I want to turn off PHP safe_mode on a new server... The server is running Ensim 3.5 Pro, and this is the 3rd ensim server I have from ev1servers.com...
The server is... |
Forum: PHP Nov 18th, 2003 |
| Replies: 15 Views: 24,933 DOH!! :eek:
It's really my fault, because the explanation is a little lacking at this point. That main segment of code is just whats called by the external scripts whenever it is needed, so... |
Forum: PHP Nov 18th, 2003 |
| Replies: 15 Views: 24,933 They are actually already only generated once.
With the $savelocation variable set to the location that the thumbnails are to be stored.
The function ImageJpeg is sending the created thumbnail... |
Forum: PHP Nov 18th, 2003 |
| Replies: 25 Views: 10,845 That would make sense after most of the posts I'm reading over. ;) <jk>
I'm sure not a huge microSlouch fan myself, but, chances are Bill Gates will someday run for President, win, and plug us all... |
Forum: PHP Nov 18th, 2003 |
| Replies: 25 Views: 10,845 I've tried the Zend Studio many times over the past couple of years I have been into PHP...
I've never fallen in love with it... and have always turned back to a standard text editor that I've... |
Forum: PHP Nov 17th, 2003 |
| Replies: 15 Views: 24,933 It would ABSOLUTELY bog down a server...
I've used it before where it generated a thumbnail each time the thumbnail was called for, but for the obvious reasons, this is NOT a good idea.
The... |
Forum: PHP Nov 17th, 2003 |
| Replies: 15 Views: 24,933 Since PHP version 4.3.0, GD has been built into PHP. Prior to that, it had to be separately installed, and PHP compiled with the paramaters I posted above.
I haven't had the chance to play with... |
Forum: PHP Nov 16th, 2003 |
| Replies: 5 Views: 6,988 I'm not 100% postive offhand if you can use mod_rewrite on a shared-hosting server... Unless you have a dedicated server, or the web host for a shared server will allow .htaccess files for individual... |
Forum: PHP Nov 16th, 2003 |
| Replies: 5 Views: 6,988 The following script is a VERY simplified version of a script I've used to make my site more search engine friendly.
To date, according to most reports, Google is one of the only search engine... |
Forum: PHP Nov 16th, 2003 |
| Replies: 15 Views: 24,933 This script will generate a thumbnail image of any JPEG image that is sent to it...
This file is independant, and mine is named resize.php you can send an image to the php file, and then return the... |
Forum: PHP Nov 16th, 2003 |
| Replies: 7 Views: 15,858 The following script will take your variable $comments and filter out any bad words. eregi_replace is case-insensitive, so it will take out the word, no matter the way it is input.
$bad_words =... |
Forum: PHP Nov 16th, 2003 |
| Replies: 23 Views: 19,412 This script will display a previous next script that will look like this:
<< prev 1 2 3 4 5 next >>
It is clean, and avoids large numbers of pages in the prev/next links
$server =... |
Forum: PHP Nov 16th, 2003 |
| Replies: 2 Views: 3,657 If you are trying to do a page, or section of news that only shows a certain length of characters, and then has a link for Read Full Story, or more..., etc the following code is just what you need:
... |
Forum: PHP Nov 15th, 2003 |
| Replies: 4 Views: 6,732 Your basic HTML form is going to have the following:
my example is a quick & dirty login script
Page1.html
<form method=POST action=login.php>
<input type=text name=user_id>
<input... |
Forum: PHP Nov 15th, 2003 |
| Replies: 20 Views: 11,407 On PHP books for some quality learning, this is where I'd point you.
The KEY book that can take you from beginner to intermediate PHP programmer IMHO is:
PHP and MySQL Web Development (Welling... |