-
Endorsed rubberman
-
Endorsed rubberman
-
Replied To a Post in Database Design - Healthcare App with many roles. How should I approach it?
> Should I combine the lot into a table? Then, it does not make sense, as I do not expect to see general-staff's medication! Storing it all in one table … -
Endorsed Ketsuekiame
-
Endorsed cereal
-
Endorsed deceptikon
-
Replied To a Post in How to use PHP variable as a html variable?
You are using the wrong quotes: echo "<input type=\"number\" name=\"$num[$i]\">"; Variables inside a single quoted string are not parsed. http://php.net/manual/en/language.types.string.php -
Edited How to use PHP variable as a html variable?
how to use php variable as a html variable? <?php $num=array(); for($i=0;$i<5;$i++) echo '<input type="number" name="$num[$i]">'; ?> i need to display the inputted number in the array. it's not working. … -
Replied To a Post in visual basic
That's too vague. You need help with what exactly? Show your code, explain your problem. -
Replied To a Post in 1308 1318
It is most likely your code, but we cannot help pinpoint an issue without seeing the source. -
Replied To a Post in Most recent items from two tables
No. you need the offset on the intermediate query (union of the two with the dates and id's). -
Replied To a Post in Most recent items from two tables
Pull the 10 most recent of both tables (id, date and table), then order by date and get the 10 most recent ones, then do a left join on the … -
Endorsed Reverend Jim
-
Endorsed Reverend Jim
-
Endorsed Reverend Jim
-
Endorsed happygeek
-
Endorsed happygeek
-
Replied To a Post in (North) American Sitcoms
Not in the UK, but watched Taxi in The Netherlands a looooooong time ago. Hill Street Blues comes to mind... (although not a sitcom) -
Replied To a Post in c#
http://www.microsoftvirtualacademy.com https://channel9.msdn.com -
Replied To a Post in retrieve data from another db
Can you give an example of what you are trying to achieve? -
Replied To a Post in PHP - Column count doesn't match value count at row 1
Missing comma between regtime and odds. -
Replied To a Post in What Programming Language Should I Use?
> So I am 12 You just violated our Terms of Service, which state you need to be over 13. -
Replied To a Post in php date range query then export result
Why are you not using `BETWEEN` in the export query as in the first query? That is the issue you have. -
Replied To a Post in Need software recommendation - file transfer
Why not use BitTorrent Sync? -
Endorsed tinstaafl
-
Endorsed tinstaafl
-
Endorsed tinstaafl
-
Replied To a Post in convert .doc to html or txt on fly (during upload) with PHP
This forum is not a problem solving service. If you have problems coding this, post what you have, clearly explain your issue and you will get help. -
Endorsed rproffitt
-
Endorsed Dani
-
Endorsed Dani
-
Endorsed Dani
-
Endorsed Dani
-
Endorsed TrustyTony
-
Endorsed deceptikon
-
Endorsed Ancient Dragon
-
Endorsed Ancient Dragon
-
Endorsed Dani
-
Endorsed deceptikon
-
Endorsed Narue
-
Endorsed Dani
-
Endorsed Dani
-
Endorsed rproffitt
-
Endorsed Dani
-
Endorsed deceptikon
-
Endorsed Dani
-
Endorsed cereal
-
Endorsed JorgeM
-
Replied To a Post in Downvoted posts bug
A downvote with an upvote will register as zero on the posts page, so won't be visible. -
Replied To a Post in sort a union query differently for different parts of the query
This might work: Select ID, TrDate, Description, Debit, Credit, Balance, Details From Bank_Acct Where TrDate Between '2009-07-01' and '2010-06-30' Union select * from (Select Top 1 ID, TrDate, 'Opening Balance' …
The End.