- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 8
- Posts with Upvotes
- 4
- Upvoting Members
- 7
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: You can do something like this... $stmt = $conn->prepare("SELECT * FROM tbl ORDER BY id DESC"); $stmt->execute(); $total = $stmt->rowCount(); while ($row = $stmt->fetchObject()) { $time = strtotime($row->mchq_date); echo "<tr><td>".date("l F jS",$time)."</td></tr>"; } More php date formating info [here](http://php.net/manual/en/function.date.php#refsect1-function.date-parameters) | |
Re: Hi, Can you give more information on what led to the printing of the message? For example, the codes? | |
Re: You can have a look at this link [Click Here](http://pythoncentral.io/pythons-range-function-explained/) Basically, I think, range(10,110,10) is starting from 10, add 10 at every step, up to 110 excluding 110 itself. | |
Its my 1st time posting here... Do tell me if I am doing anything wrong. [code=c] cout << "Please specify a question that has a yes answer for your object and a no answer for my guess:" << endl; getline(cin, qtn); foundyq = qtn.find_first_not_of("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ "); while(int(foundyq) != -1) { if(noTry … |