• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PHP Paxton's Web Development School Part: 1

Use
PHP:
echo "$name $a $b $g";
instead of
PHP:
echo "$name '$a' '$b' '$g'";
Your result would be like this: SyntheticX 'learned' 'a lot' '!', and my SyntheticX learned a lot !
 
Code:
<?php
$p = 9;
$a = 8;
$sum = $p+$a;
if ($sum == 17)
{
echo "Paxton is php master!";
}
else if ($sum == 18)
{
echo "Azcarer is php master!";
}
?>
 
PHP:
<?php 

$mytext = "Paxton is good!"; 
echo $mytext;  

?>




PHP:
<?php 
$a = 5; 
if ($a == 7) 
{ 
echo "Doesn't work, and I didn't learn anything."; 
} 
else if ($a != 7) 
{ 
echo "I guess I learned something"; 
} 
?>
 
PHP:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ;


=)
 
PHP:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ;


=)

What the hell? :ninja:
 
PHP:
$name = "paxton";
echo $name;

PHP:
if ($num == 5)
{
echo "it works";
}
else if ($num == 7)
{
echo "Dont work";
 
Paxton's Web Development School Part 1 PDF Document

The following attachment contains a PDF Document of
Paxton's Web Development School Part 1, with various grammar fix,
common misspell, Highlights on keywords and symbols.

I might do the same thing with part 2.

Enjoy!
 

Attachments

  • PHP Paxton's Web Development School Part: 1.pdf
    116 KB · Views: 4 · VirusTotal
great ^^ Keep writing Rep++

p.s. You must spread some Reputation around before giving it to paxton again.
 
The following attachment contains a PDF Document of
Paxton's Web Development School Part 1, with various grammar fix,
common misspell, Highlights on keywords and symbols.

I might do the same thing with part 2.

Enjoy!

Well done.
 
Back
Top