MyBB Community Forums

Full Version: RevolutionBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
I know:
Echos (Of course :p )
Variables
Sessions
Cookies
Syntax
Strings
Operators
Comments
If
Else
Elseif
Require
Include
Arrays
While Loop
Functions
Post
Get
HTML Entities
str_replace
Date

As for mysql:

Select
Insert
Delete
Connect
Queries
Fetch Array
Update
Join
Count
Group by
SQL Injection
and more.
I'm not 100% sure about JOIN yet, but I will try and get it more if I need to.

I also don't know ajax. Was ajax easy to learn if you know javascript well?
(2009-02-10, 11:40 PM)D-Fraz Wrote: [ -> ]I also don't know ajax. Was ajax easy to learn if you know javascript well?
Not sure if it makes any difference, but I actually learned AJAX before Javascript. But yes, I'd learn javascript, then go onto learning AJAX.
Cool.
I learned most of javascript a few weeks ago.

<?php
if($ajax=="learned") echo "I LEARNED AJAX!!!!"; else echo "I'm a looser!";
?>
(2009-02-10, 11:38 PM)TomL Wrote: [ -> ]NiceSmile I don't know the JOIN's yet, trying to find a good tutorial or someone to explain it to me. Other than that, I know all of what you know - plus OOP. Not to mention I know HTML, CSS, AJAX, CSS, and Prototype+jQuery(javascript libraries)

Join is just an alias of implode, so if you know implode, you know join. A detailed tutorial isn't necessary IMO, it's just a function and you can learn how to use it on php's website.
(2009-02-10, 11:45 PM)D-Fraz Wrote: [ -> ]Cool.
I learned most of javascript a few weeks ago.

<?php
if($ajax=="learned") echo "I LEARNED AJAX!!!!"; else echo "I'm a looser!";
?>
lmfao that's funnyToungue
lol
how bout...

<?php
$idk = mysql_query("
         SELECT *
         FROM
         Ugly_users
         WHERE uid='18660'"
         );
while($user = mysql_fetch_array($idk)){
    if($user['username'] == "D-Fraz"){
    if($user['uid']==18660)
      echo "D-Fraz says: TomL is the best!!:)"
}
}
?>

EDIT: Forgot to end the while loop and the if statement :O
Quote:EDIT: Forgot to end the while loop and the if statement :O

And your echo.
woops lol, fixed :p
(2009-02-10, 11:54 PM)D-Fraz Wrote: [ -> ]lol
how bout...

<?php
$idk = mysql_query("
         SELECT *
         FROM
         Ugly_users
         WHERE uid='18660'"
         );
while($user = mysql_fetch_array($idk)){
    if($user['username'] == "D-Fraz"){
    if($user['uid']==18660)
      echo "D-Fraz says: TomL is the best!!:)"
}
}
?>

EDIT: Forgot to end the while loop and the if statement :O
Sounds good to me Wink
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21