Forum: PHP Aug 14th, 2009 |
| Replies: 9 Views: 292 Oh snap
The problem was just that in the class I downloaded "<?" was used in stead of "<?php". Kind of emberassing, but I think everyone understands that it can take a while before finding that... |
Forum: PHP Aug 14th, 2009 |
| Replies: 9 Views: 292 I was wondering, is mysqli using mysqlnd or are those 2 different things? |
Forum: PHP Aug 14th, 2009 |
| Replies: 9 Views: 292 well, it's one of my first projects (non professional of course).
So keeping it easy would be nice :-).
It's only for a website with few visitors so I don't think that will be the problem. |
Forum: PHP Aug 14th, 2009 |
| Replies: 9 Views: 292 Ok, thx.
I already did a google search before this post, and found some classes, but I'm not sure about using them. They're pretty much the same then the previous class I used, using mysql_...()... |
Forum: PHP Aug 14th, 2009 |
| Replies: 9 Views: 292 Yes, but I'm talking about classes using those libraries.
It kind of goes like this:
The downloaded class uses the mysql(i) interface to provide database access and querying. It also... |
Forum: PHP Aug 14th, 2009 |
| Replies: 9 Views: 292 Hi all
I'm encountering some problems switching to PHP 5.3.
I am now using XAMPP 1.7.2.
I had this (http://slaout.linux62.org/php/index.html) database class extended and it worked when using... |
Forum: PHP Aug 1st, 2009 |
| Replies: 3 Views: 702 I got XDebug setup in xampp.
Following instructions in this tutorial (also read the comments, there's a littel error): http://www.madbabble.com/install-xdebug-in-xampp.html
I tried it before but it... |
Forum: PHP Jul 31st, 2009 |
| Replies: 4 Views: 278 Yes, I'm already using func_get_args(), but I was wondering how the PHP developers get real method overloading (or at least something that looks like real method overloading), while the solution I... |
Forum: PHP Jul 30th, 2009 |
| Replies: 4 Views: 278 First: Oops, it seems like I forgot the attachment.
I posted 2 attachments now, which will make it more clear what I mean.
Answer: uhu, indeed, the solution posted on that site is the solution I... |
Forum: PHP Jul 30th, 2009 |
| Replies: 4 Views: 278 Hi all
I'm used to programming in Java, which does support method overloading.
So when starting to use PHP, I quickly found that this was not supported in PHP.
But why and how is this... |
Forum: PHP Jul 30th, 2009 |
| Replies: 3 Views: 289 Uhu, I get the point. Thanks.
I have been validating html and xhtml sites before, but it's been a while, and it was only for little sites, made to practice.
I'm going to focus on the programming... |
Forum: PHP Jul 30th, 2009 |
| Replies: 3 Views: 702 I heard about XDebug and Zend, one site said "XDebug is best choice", you say "Zend is best". I have no idea what's real for the moment.
Can you give arguments why it is best choice?
To be... |
Forum: PHP Jul 30th, 2009 |
| Replies: 3 Views: 702 Hi all
I would like to start debugging and have been doing some searching on the web, but everything I find is pretty complicated. (I'm just starting to learn web developping)
Does anyone know... |
Forum: PHP Jul 30th, 2009 |
| Replies: 3 Views: 289 Sorry for answering my own thread:
I use XHTML 1.0 strict, and it seems that the <input> tags are supposed to be within a tag like <p> or something like that, and not just in <form>.
I know this... |
Forum: PHP Jul 30th, 2009 |
| Replies: 3 Views: 289 Hi all
I'm having a problem with netbeans when I try to make af form. It gives an error when it's not supposed to. At least, as far as I know it's not.
An image can say a thousand words: check... |
Forum: PHP Jul 15th, 2009 |
| Replies: 4 Views: 896 Hi again
Sorry for posting three times in a row and answering my own threads =D.
I have installed netbeans 6.7 now and it works there. I don't know how to solve the problem in netbeans 6.5, but... |
Forum: PHP Jul 15th, 2009 |
| Replies: 4 Views: 896 Here's some extra info: the code completion does work when programming in Java.
EDIT: And all my autocompletion options are marked. Except for "Case sensitive code completion", but that shouldn't be... |
Forum: PHP Jul 15th, 2009 |
| Replies: 4 Views: 896 Hmmm, I tried it, and it didn't really work.
And even if it did, if I have to do this for every variable... It would be nice if would be possible just to make it work automatically.
Thx for your... |
Forum: PHP Jul 14th, 2009 |
| Replies: 4 Views: 896 Hi all
I'm am using Netbeans 6.5 on ubuntu for programming PHP.
When I create an instance of a class and type "->" after the variables name, I don't get to see any methods. Even when I press... |
Forum: PHP Sep 4th, 2008 |
| Replies: 1 Views: 711 Problem solved, the code itself worked, the problem was that i made a mistake putting the data from the database into this 2 dimensional array, everything was placed in $matches[0]...
Greets, K?! |
Forum: PHP Sep 4th, 2008 |
| Replies: 1 Views: 711 What's wrong about this code?
($matches is a 2 dimensional array)
for($i = 0; $i < count($matches); $i++)
{
echo $matches[$i][0]->getName_team_home()."<br />";
}
It's not the actual code,... |
Forum: PHP Aug 16th, 2008 |
| Replies: 4 Views: 2,128 Thank you :-).
Greets, K?!
Edit: Synking, i don't know if javascript uses this and super, but i meant java.
"This" and "super" are used to another variable then the one you would use normally.... |
Forum: PHP Aug 14th, 2008 |
| Replies: 4 Views: 2,128 I'd like to know if there is an alternative to "this" and "super" from Java in PHP.
Greets, K?! |