Jump to content

Akula_dude

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by Akula_dude

  1. ... which is why im not a philosopher
  2. Akula_dude

    Simple PHP Help

    As would file_get_contents()
  3. Generally I learn languages from the internet and a book simultaneously. After that the books just pile up on my shelf as a huge reference library.
  4. Okay, say you have a text file on your server. It has the text "Hello, world" in it. with the code in that tutorial, you can open the file and echo it's contents (writing "hello world" on the page). This is useful because you can have several pages all opening the text file, and when you change one file (the text file) all the pages change.
  5. Akula_dude

    free web host

    http://w3schools.invisionzone.com/index.php?showtopic=3770Theres a load of them in that discussion
  6. yeah, im 14. And im seriously thinking about deleting that website... could damage my reputation as a web designer in years to come
  7. I started on VB4 when i was 10, and got into VB.NET about a year after. So I spent three years of free time messing around until I discovered the web. Then I got into HTML and made my first website (dont taunt me for it, please ) and soon moved on into the realm of simple CSS and JavaScript. Now, around six months later I decided to get a book on PHP, and two months on from that here I am. Currently not sure what to learn next, but Java and XML look very promising. Theres a good chance I wont be learning anything else to do with .NET, because of the price.
  8. Thats only because more than 50% of peple use the browser tha comes with their computer. Anyways, g to the browser dscussion to talk more. On-topic, does tha code really not worl with opera/firefox? is there any code that does?ps. sorry for typos im on my pda
  9. not sure, cos i dont have the entire code, but it could be if ($no=="no")instead ofif ($no=="No")
  10. http://www.opensourcecms.com/You can look around the user and admin sides of loads of popular CMSs there
  11. Well, im running on a Dell Inspiron 1300 laptop @ 1.5Ghz with 512mb RAM and my PC seems to be incapable of running for over 2 hours without dying. It once crashed 8 seconds after booting. If i knew all my apps etc would work I'd go linux.
  12. A great beginners book is PHP5 In Easy Steps. But if you're looking for intermediate books you might find that a little patronising
  13. Akula_dude

    DB/Table size?

    Is there a way to find the database or even individual table size in php? By size i mean the actual size in KB or whatever
  14. Yeah, I know, I was looking for how to implement it into my own scripts. So far I've had no luck looking through php-fusion's scripts, so i might try phpBB next...
  15. Akula_dude

    MySQL Backup?

    I've been looking through some open source forums/CMS's code looking for the database backup scripts, but unfortunately I cant find any well-commented ones...So, is there any way to write the entire MySQL database to a .sql file and dump it? Like what you can do with phpMyAdmin?Thanks in advance
  16. Akula_dude

    Help

    Okay. You would have the form send data to redirect.php and method would be GET. you also need to have the input box named "username".Its quite simple. Redirect.php gets the data from the form and takes the user to [username input].php using the header() function.
  17. Akula_dude

    Help

    you could have a page called redirect.php, which you send the info from the form to in GET, which then redirects to [input_username].phpredirect.php would look something like this:<?php$username = $_GET['username'];header( "Location:$username.php" );?>I think. im also in a bit of a hurry, so that might not work
  18. Akula_dude

    Secure Email

    Not quite sure, but i think it stops people injecting code and making the form send out loads of emails.PS. Is that the code from the Secure Email example here?
  19. code for the other file (the one that includes this file) ?
  20. JS? I would've thought you'd use PHP and a database... could use JS though OKay, had a think about it, and this is how I'd do it: You have 60 1-minute-long sound files, and when you load the page a php script will find out how long into the "show" you are, and start playing from the nearest minute. You'd use JavaScript to play the next file after the current one has finished.
  21. Fair point. Well... somebody do it, i want etch-a-sketch online
  22. Oooh... tough one. It'd be easier than a forum system, and more unique. Poll?
  23. databases are just tables, really, but with a nice eay way of selecting entries.For example, if I had a table called "members" wich holds the Usernames and emailsof people and I wanted to see the list of usenames: my_sql_query( "SELECT Username FROM Members" );For more (alot) of info, read the tutorial. Keep on with it, databases are very useful.
×
×
  • Create New...