Forum: MySQL Nov 6th, 2009 |
| Replies: 6 Views: 570 my db is simple, numeric data only, but i went here, MYSQL Charsets (http://dev.mysql.com/doc/refman/5.1/en/charset-syntax.html) to find out how to display other character sets, it was complicated,... |
Forum: MySQL Oct 8th, 2009 |
| Replies: 2 Views: 388 CREATE TABLE Employee
(
Emp_Id int PRIMARY KEY IDENTITY,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255),
postalcode vachar(6),
/* other... |
Forum: MySQL Aug 24th, 2009 |
| Replies: 5 Views: 506 insert into #temptable ( IDENTITY(int, 1,1) AS number, select * FROM table ORDER BY score desc) SELECT * FROM #temptable ORDER BY number DROP TABLE #temptablethought process only, cant guarantee the... |
Forum: MySQL Aug 19th, 2009 |
| Replies: 6 Views: 497 good catch, stared at it and didnt see |
Forum: MySQL Jul 2nd, 2009 |
| Replies: 8 Views: 773 I was thinking that spambots search for email addresses that always contain a '@' SO something that doesnt include a @ will get past
<input type='text' id='mailaccount'>@<input type='text'... |
Forum: MySQL Jul 2nd, 2009 |
| Replies: 8 Views: 773 that address is sent in clear text through however many relays, proxies, exist in the traceroute between your host and the user,
any one of them could be compromised
with an appropriate packet... |
Forum: MySQL Jul 2nd, 2009 |
| Replies: 8 Views: 773 This is Joomla's spam protection
Joomla has a plugin that obfuscates email addresses, to make it harder for scrapers and bots.
The visible address and effective address are not changed, just what... |
Forum: MySQL Jun 11th, 2009 |
| Replies: 5 Views: 593 select NAME from tablename order by name; |
Forum: MySQL Mar 5th, 2009 |
| Replies: 13 Views: 3,861 most do not want to be told rtfmits easier for me its just another line of code, that I have in memory, references I have to waste my time looking up |
Forum: MySQL Mar 5th, 2009 |
| Replies: 13 Views: 3,861 select name where state like '%s', $post['state']
mysql_query(sprintf("select name where state like '%s', $post['state'] "));
probably better if you take the commas out of your state tables
wa fl... |
Forum: MySQL Mar 5th, 2009 |
| Replies: 3 Views: 802 do not punctuate numbers in input data
mysql suypports multiple data schema, language-specific and region specific
in many supported schema the comma is a decimal separator, the number is truncated... |
Forum: MySQL Feb 18th, 2009 |
| Replies: 2 Views: 1,398 if( $r['whattotal'] == '0' ){ echo "Less";} ? maybe |
Forum: MySQL Feb 10th, 2009 |
| Replies: 6 Views: 823 AND b.date BETWEEN CURdate( ) AND DATE_ADD(CURDATE(), INTERVAL +9 DAY) |