Yeah, I think I've replied to people rather than the list, sorry to those I
sent mail to... 8-(
_www.Lynda.com_ (http://www.Lynda.com) has a new Video tutorial... about 9
1/2 hours long.
Best one I've found for the price would be _www.VTC.com_ (http://www.VTC.com)
which is $30 a month and you can get like 25 total hours of PHP and
MySQL... They're good for Beginners - then check ou
The Manual is great - but most people seem to get the hang of PHP faster if
they Watch people in action - then move onto reading the Manual...
Chris Shifflett's link (where he's an Instructor) is great too
(phparch.com)...
Hey guys,
I'm doing a tutorial from a book (PHP and MySQL Web Development) and I'm
having a problem... when I use the script they supply I get this error:
Fatal error: Class 'mysqli' not found in
C:\apachefriends\xampp\htdocs\results.php on line 29
here is the code:
===
In a message dated 6/20/2005 7:30:20 P.M. Central Standard Time,
[EMAIL PROTECTED] writes:
Is PHP compiled with mysqli support: http://ro.php.net/mysqli
Read the docs about what this extension requires.
I did all of this and I'm still getting the error:
Runtime Configuration
The behavio
> Is PHP compiled with mysqli support: http://ro.php.net/mysqli
> Read the docs about what this extension requires.
I did all of this and I'm still getting the error:
Runtime Configuration
The behaviour of these functions is affected by settings in php.ini.
Table 1. MySQLi Configuratio
I'm using a XAMPP setup through ApacheFriends.org, version 1.4.14 - it uses
PHP 5.0.3 and MySQL 4.1.12 and Apache 2.0.54 (Win32)
The PHPInfo doesn't show the MySQLi extensions loaded, but I try adding the
DLL in the extension list like so:
;extension=php_msql.dll
extensi
Well, I figured out that problem (I suppose) by upgrading to MySQL 5.0 and
the error doesn't come up anymore... but now I get this error:
Fatal error: Call to a member function free() on a non-object in
C:\xampp\htdocs\results.php on line 60
Again, here's the code:
=
when i try it this way:
query($query);
$num_results = $result->num_rows;
echo 'Number of books found: '.$num_results.'';
for ($i=0; $i <$num_results; $i++)
{
$row = $result->fetch_assoc();
echo ''.($i+1).'. Title: ';
echo htmlspecialchars(stripslashes($row['title']));
echo 'Author: ';
e
no, that's been working fine. it's just the mysqli wasn't working with MySQL
4.1.12 - now i have 5.0.7 and it works - now i'm just getting a fatal error
using "free()".
Thanks,
Clint
In a message dated 6/21/2005 2:55:08 P.M. Central Standard Time,
[EMAIL PROTECTED] writes:
error_reporting(E_ALL);
Well, with E_ALL on i get this error:
===
Notice: Undefined variable: searchterm in c:\wamp\www\books\results.php on
line 18
You have not entered search de
Wow, I feel really stupid...
// create short variable names
$searchtype=$_POST['searchtype'];
$searchtype=$_POST['searchterm'];
the third line should be $searchterm=$_POST['searchterm']
wow lol... I'd like to hope this wasn't the error all along - but atlea
it's very easy to use and there's more documentation floating around than
any other - which is always a good thing... =)
from a n00b's point of view!
can you show the code? did you chmod the files?
I'd be interested in playing with some ideas...
Sams, PHP and MySQL Web Development (2005 edition)
PHP Anthology
both good books...
Google is your friend.
_http://forums.mysql.com/read.php?20,17671,27914_
(http://forums.mysql.com/read.php?20,17671,27914)
This really shouldn't be getting out of hand the way it is... if you don't
like it, trust it, agree with it - why not just ignore it? It's as simple as
that... don't have a stroke because of it.
Well, unfortunately you just contradicted yourself as well. I had about 18
e-mails of the same thing, so I was replying about those.
Thanks for your input though, It's appreciated.
hmmm... strange is right. because someone else said it was four hours after
i sent that, now it's a day (wow how time flies through email)? i guess i
should keep my eyeballs peeled on every piece of e-mail in my box 24 hours a
day,
this way i won't be over a minute late ;)
In a message dated 6/29/2005 11:26:08 A.M. Central Standard Time,
[EMAIL PROTECTED] writes:
Yes a framework can be built in PHP, C# or any language but how would you
like to design something like this.
How about something like Prado? looks just like it. _http://xisc.com_
(http://xi
Hi everyone,
Sorry for the n00bie question but I've been racking my brain, searching
Google and yes, I have been "RTFM" for over 6 months :-)
All I'm trying to do is set up a "User system" that allows a member to
create their own personal site using an auto_increment type system? This is
Thanks, that's actually really close to what I was looking for...
so if I wanted, say: _http://mydomain.com/0/joe_ (http://mydomain.com/0/joe)
- you're saying I should have the Directory "/0/" or "/1/" already set
up... right? then do I use something such as mkdir and chdir to create joe
Thanks Mark and Sonu... as much as I've learned over the last few months I
think I'm still a little confused about some of this stuff. I appreciate the
Help you've given me :-)
Would any of you know about any tutorials on something like this? books with
tutorials, etc? If I knew what it w
Thanks! tried googling - only found "using ruby to automatically generate
php sites"...
the SW-Soft "Site Builder" program is a great program - looking all through
it now.
Thanks!
Hi,
I'm using Shared Hosting and I was told - then I learned from trial and
error - that you can't use mkdir on Shared Hosting... is this *100%* true?
is
there a way around it?
I get:
Warning: mkdir(/home/***/public_html/test/): Permission denied in
/home/***/public_html/test.php on
In a message dated 8/6/2005 10:59:44 P.M. Central Standard Time,
[EMAIL PROTECTED] writes:
As far as I know, it's not a shared hosting issue, but a permission issue.
The site admin has not given the user under which your php scripts run
permission to create directories and most likely files
Thanks, but I've tried that when I first got the Error message, it still
gave me the error. Thanks though!
In a message dated 8/7/2005 1:29:26 A.M. Central Standard Time,
[EMAIL PROTECTED] writes:
>Open up your FTP client and log into your website, then change the
>permissions on your f
Thanks, I thought that might have been it - but It's not... I wrote a
support ticket and - now - I'm able to use mkdir as long as the Directories
are
chmoded to 755+ :)
thanks to all who helped!
In a message dated 8/8/2005 2:16:12 A.M. Central Standard Time,
[EMAIL PROTECTED] write
Is this something you're looking for?
_http://www.phpfreaks.com/scripts/User_Authentication/16.php_
(http://www.phpfreaks.com/scripts/User_Authentication/16.php)
In a message dated 8/14/2005 2:42:49 A.M. Central Standard Time,
[EMAIL PROTECTED] writes:
It's rather trivial to test it. Set up a second Apache server with php5
loaded that listens to port 81 or some other port and point it at the
same document_root. Then you can switch back and forth b
In a message dated 8/14/2005 10:54:57 A.M. Central Standard Time,
[EMAIL PROTECTED] writes:
>hello,
>i want to protect a directory using php username and password
>authentication.the username and passwords will be stored in .htpasswd
>file.but the problem is that how to make user to enter
In a message dated 8/13/2005 6:33:16 P.M. Central Standard Time,
[EMAIL PROTECTED] writes:
>>while were not on the subject
>>John I have a question about your wife ...
>>oh shit wrong list ;-)
>>no no I meant to ask about sand - how do I make a CPU using the stuff?
lol... I thought
Yeah, I had this happen to me a while back... glad some of the biggest have
been caught lately =)
<< Original Message
I have a form that my visitors can email me from. Some jerk is trying
to fool the mail() function into sending his spam, and I got this
today:
[EM
have you tried their forums at moodle.org ?
- Clint
In a message dated 8/17/2005 1:17:54 P.M. Central Standard Time,
[EMAIL PROTECTED] writes:
>I tend to agree on things like this. If it's a generic problem then I
>think it does everyone some good to discuss it in the open. Although I
>can see the point of not discussing specific problems
Ironically, on AOL - all of my EMAIL accounts were spammed with "test"
(subject message) emails... approzimately 10 a day for about 5 days in a row -
all
which had different account names - but the same messages. So, I have a
feeling these are all connected with the hacked forms everyone's
I would check out Mambo: _http://mamboserver.com_ (http://mamboserver.com)
- Clint
>"the CMS formerly known as Mambo"
Yeah, I was reading about that last night... Interesting stuff lol
Interesting future ahead as well.
- Clint
Look at the Thousand and Thousands of vBulletin boards, PHPBB's and other
PHP/MySQL based BB Systems out there with several thousand Members on at once,
not including guests. I know Yahoo! uses PHP and I've heard Google does as
well?
VTC.com has some ASP tutorials... you can get their Monthly "University"
program for $30.00 a month?
There's no code. You need to put your code in the Email so we can see it...
Check the PHP.net site or PHPClasses.org -- they both have a good list of
these groups.
_http://andigutmans.blogspot.com/_ (http://andigutmans.blogspot.com/)
Andi talks about the Framework on his Blog.
- Clint
44 matches
Mail list logo