[PHP-DB] Need some help with PHP coding

2011-10-12 Thread T Matias
*Need so help !!! We have a website based on the Professional theme cubit .. For some time to now we had to migrate to another server... After moving, the all site is working perfect... The only problem is that, we have a home page video... And I don't know how to place that video on the home

[PHP-DB] Re: Need some help with PHP coding

2011-10-12 Thread Jim Giner
What makes you think it's a PHP problem? It could be that you modified the location of the video file and the href= is wrong. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: Need some help with PHP coding

2011-10-12 Thread Jim Giner
Looking at your site's webpage code, I do not see any reference to any .AVI files. If it's a PHP problem, you should be looking at the portion of your code that is supposed to be outputting that file and html during the build of this webpage. -- PHP Database Mailing List

[PHP-DB] SELECT syntax

2011-10-12 Thread Ron Piggott
In my Bible_Trivia table I have the columns `trivia_answer_1`, `trivia_answer_2`, `trivia_answer_3`, `trivia_answer_4`, `answer` `answer` is an integer always with a value of 1 to 4. Is there a way to use the value of `answer` to only select the correct trivia answer? This doesn’t work, but

RE: [PHP-DB] SELECT syntax

2011-10-12 Thread Toby Hart Dyke
Not terribly elegant, but this should work: SELECT `trivia_answer_1` AS `trivia_answer` FROM `Bible_trivia` WHERE `answer`=1 UNION SELECT `trivia_answer_2` AS `trivia_answer` FROM `Bible_trivia` WHERE `answer`=2 UNION SELECT `trivia_answer_3` AS `trivia_answer` FROM `Bible_trivia` WHERE

Re: [PHP-DB] SELECT syntax

2011-10-12 Thread Jack van Zanen
Hi In Oracle (and maybe others) you can use select case when answer=1 then trivia_answer_1 when answer=2 then trivia_answer_2 when answer=3 then trivia_answer_3 when answer=4 then trivia_answer_4 else null end answer from bible_trivia_table OR You can select all of them and process in PHP,

Re: [PHP-DB] SELECT syntax

2011-10-12 Thread Amit Tandon
select casehttp://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html works in mysql also regds amit The difference between fiction and reality? Fiction has to make sense. On Thu, Oct 13, 2011 at 3:26 AM, Jack van Zanen j...@vanzanen.com wrote: Hi In Oracle (and maybe

Re: [PHP-DB] SELECT syntax

2011-10-12 Thread Amit Tandon
another examplehttp://mysql-tips.blogspot.com/2005/04/mysql-select-case-example.html regds amit The difference between fiction and reality? Fiction has to make sense. On Thu, Oct 13, 2011 at 9:34 AM, Amit Tandon att...@gmail.com wrote: select