|
ForumsSega Master System / Mark III / Game GearSG-1000 / SC-3000 / SF-7000 / OMV |
Home - Forums - Games - Scans - Maps - Cheats - Credits Music - Videos - Development - Hacks - Translations - Homebrew |
Author | Message |
---|---|
|
First sexy select!
Posted: Fri Feb 13, 2004 5:32 pm
|
Wasted lots of time today figuring out and installing phplib, and trying/learning with some PHP stuff.
Here is a first database SELECT: http://wip.smspower.org/tests/test_select_utf-8.php Should display two lines, one with english text and the other with Japanese text. UTF-8 seems not to be a problem with the DB storage. PhpMyAdmin display the Japanese text field as NCRs (all that &# number ; and hex ; stuff), suggesting that it is stored that way ? Later I will have to try performing research on Japanese data. If all goes along well, a game listing may be shaping up in the following weeks. And ah: I've found a job. |
|
|
www sessions
Posted: Fri Feb 13, 2004 11:27 pm
|
There's still a little problem with session handling in phplib. phplib both support sessions through web browser cookies, and by passing parameters to URL. For some reason, on the first page retrieval, the user browser gets its URL modified with a session_id parameters. Subsequent page gets use the cookie. I'll look into it. Does Japanese works well for those who tested? |
|
|
Japenese Works Great! (nt)
Posted: Sat Feb 14, 2004 11:52 am
|
|
|
Grass-eatin'me
|
Re: www sessions
Posted: Wed Feb 18, 2004 5:22 pm
|
Session variables are passed using HTTP POST variables, which is the prefered way of getting variables, those variables are not sent through the URL. If you send session_variabels + variables through the URL, the URL (HTTP GET) variables will get overwritten by the post variables.
Yes. |
|