Jump to content

deekay

Member
  • Posts

    18
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    Amsterdam, The Netherlands

deekay's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. yess! that's it. thanks alot. it's so helpful with text editing.
  2. Yeah, me too! I'm in my final year, and I have to go back and program a mobile app in Java. Last time I did some Java was three years ago, and that wasn't very much. Also, I'm doing an internship where the company uses ColdFusion instead of PHP for their websites. They told me CF also uses Java libraries, or Java-something anyway. So I think those vids would come in handy:)
  3. Yeah I'm following those tutorials, the one of Paul Hegharty for creating iPhone apps. It's pretty good. Even though it's a beginners course of iOS, they do assume you have a good knowledge of OOP and at least a good understanding of at least one OOP language like Java or any of the C's. Even though I made a simple calculator app in the first videos. I still don't really comprehend the Objective C language itself. A lot of it Xcode already does for you, especially with Interface Builder and the library is also pretty vast. What I miss from those vids is a very clear, almost dummy proof, explanation of Objective C. And the buildup from basic vids to intermediate vids. In short, how you guys are doing with the PHP vids, which was very clear to me and I already built some sites with PHP since then.
  4. Hey Guys, I was wondering if you are going to come with some Objective C/Xcode tutorials. I know you guys are focussing on HTML5, and the tutorials are great and I am going to build some HTML5 sites at my internship. But I really want to build an iOS app. And considering the huge success of iPhones and iPads, I think there's a lot of interest in Objective C tutorials. I already started, and for me it's a bit harder than building a site with HTML/CSS/PHP. They are really strict with MVC. Would love if you guys came out with some vids! Regards, deekay
  5. Hi guys, This is probably a newbie question, but I couldn't find it on Google, so I'll try here. I've been watching lots of tutorials here lately and many times I see the person of the tutorial select some text in their text editor, and then move it with tab. So I want to do that too, cuz it would speed up my workflow a lot. I just can't figure it out. It's not command-tab, or command-shift tab, or all the other buttons. Can someone please help me out? I am using mac os x lion with BBEdit.
  6. My host doesnt support MySQLi, only MySQL. In what way do I have to the change the code, so it will work with MySQL? So far I copy/pasted all your files to my host and I only get this output: View Records View All | View Paginated Error: Add New Record So there is some kind of error. But on my localhost I get this, just like in your video: View Records View All | View Paginated ID First Name Last Name 1 Bob Baker Edit Delete 2 Tim Thomas Edit Delete 3 Rachel Roberts Edit Delete 4 Sam Smith Edit Delete Add New Record I just copy/pasted the text, but the table appears and the buttons are in blue in the browser. My host does have PHPmyAdmin and I also made the same database 'records' with table 'players'. So that's not the problem. Another difference is that my local host is running Xamp with PHP5.3.1 and my host has PHP5.2.4. I don't know if that matters.
  7. The code is on this vid: "PHP and MySQL: SQL Select Statements with PHP" at the PHP tutorial vids. And yes I overlooked the echo statement, cuz later on he does add it in a separate php block. Well, like I said, I'm a PHP noob So I have to pay attention to the details
  8. OMG!!! It finally works! So I added echo $my_rows; And I finally got output from the database!! Thank you sooo much, I was dealing with this for 2 days now I can finally move on! Thanks alot!
  9. I removed the "$" and now I get this: Connected succesfully No query results whatsoever
  10. I just saw one difference: i put a semicolon after MYSQL_ASSOC)). But i removed the semicolon, and nothing changed.
  11. Ok. So this is the query I ran. I dunno what happened, but besides the echo statement I get this: Connected succesfully Fatal error: Function name must be a string in /Applications/XAMPP/xamppfiles/htdocs/xampkiller/database.php on line 20 But I attached a screenshot where you see my code on the left on Dreamweaver and on the right a screenshot from the vid. But call me crazy, but I really don't see a difference. But in the vid the code works. And if you look at line 20 it's the same as on the vid, so I don't understand.
  12. Wow, that's really strange. Ok, so this is what's happening: With the code I showed you guys, I got this from both Firefox, Safari and Chrome: Connected succesfully When i do a typo with 'localhost' like 'localhaost' I get this: Warning: mysql_connect() [function.mysql-connect]: Unknown MySQL server host 'localhaost' (1) in /Applications/XAMPP/xamppfiles/htdocs/xampkiller/database.php on line 9 Could not connect: Unknown MySQL server host 'localhaost' (1) BUT when I do a typo with the user 'root', like 'raoot' I get this: Connected succesfully And that's wrong, because there should be an error message with this. And last, when I put a password I get the following: Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in /Applications/XAMPP/xamppfiles/htdocs/xampkiller/database.php on line 9 Could not connect: Access denied for user 'root'@'localhost' (using password: YES) So it's responding well when the localhost or the password is typed wrong, but not with the user. And when I a run a query I get this again: b]Connected succesfully [/b] And only that. So that's really strange. So PHP and MySQL are definitely not working well with each other. I downloaded the Xampp a couple of days ago and followed all the instructions. With the other PHP tutorials where I only worked with PHP it worked just fine. Working with MySQL on PHPmyAdmin works fine as well. The database is created with the table and the fields are there. I did everything as instructed, but for some reason this just doesn't work.
  13. Yep that's the code! To double check I attached a screenshot from my code on Dreamweaver and one from the vid and there is no difference! Xampp is running (Apache, MySQL, FTP) and the php.ini file is located where it should be ../Aplications/XAMPP/Xamppfiles/etc/php.ini I found this on another forum where a person had a similar problem: "Yes, it means that the PHP MySQL extension is not installed/enabled. Note that as of PHP5.0 the MySQL extension is not installed by default (being replaced by the MySQLi extension). If you want/need to get the original extension to work, check out the info at: Getting PHP5 to work with MySQL" The last line was a link, but it doesnt work So now I'm trying to find out how to install the PHP MySQL extension. But so far I can't find anything...
×
×
  • Create New...