Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<pre><code>USERS TABLE UID |int(11) | PK as primery key ? NN as not null ? UN AI username |varchar(45) | UQ password |varchar(200) | 200 is better. name |varchar(100) | ok gender |blob | f and M phone |varchar(30) | email |varchar(300) | thats 256 , put 300 insted verified |tinyint(1) | UN timezone(delate) |datetime | this should be a php job timeregister |datetime | timeactive |datetime | COMPANY TABLE CID |int(11) | PK NN UN AI name |varchar(45) | address |varchar(100) | 100 is fine email |varchar(255) | phone |varchar(30) | link |varchar(255) | imagelogo |varchar(255) | imagelogosmall |varchar(255) | the nameing is just fine for me yahoo |varchar(100) | see 3. linkin |varchar(100) | linkin use real names, maybe 100 is great twitter |varchar(20) | its 20 ( maybe 15 ) description |TEXT | shoutout |varchar(140) | seems ok. verified |tinyint(1) | UN PRODUCT TABLE PID |int(11) | PK NN UN AI CID |int(11) | FK: company.cid cascade delete &amp; update name |varchar(100) | description |TEXT | imagelarge |varchar(255) | imagesmall |varchar(255) | tag |varchar(45) | price |decimal(11,2) | </code></pre> <p>in php see php.net/manual/en/function.date-default-timezone-set.php</p> <pre><code>$time = date_default_timezone_set('Region/Town'); $time = date( 'Y-m-d H:i:s' ); echo $time; </code></pre> <ol start="3"> <li><a href="http://www.eph.co.uk/resources/email-address-length-faq/" rel="nofollow noreferrer">http://www.eph.co.uk/resources/email-address-length-faq/</a></li> </ol>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload