Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
3 Posted Topics
Re: MySQL Libraries?
libmySQL.dll and php_mysql.dll and you should enable the extension in the php.ini file
maybe the concat function is what you need. [code]select concat('ml_y ','2');[/code] the result: ml_y2 hope it helps, while you post your code.
[code=php]echo("확인 : <input type=checkbox name=reading checked value="ON"> ");[/code] should be: [code=php]echo("확인 : <input type=checkbox name=reading checked value=\"ON\"> ");[/code] you should escape the double quotes good luck
The End.
mmxx66