Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
8
Posts with Upvotes
4
Upvoting Members
7
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~1K People Reached
Favorite Tags
Member Avatar for Lloyd_4

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)

Member Avatar for Lloyd_4
0
370
Member Avatar for davy_yg

Hi, Can you give more information on what led to the printing of the message? For example, the codes?

Member Avatar for diafol
0
194
Member Avatar for yaldoo

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.

Member Avatar for yaldoo
0
684
Member Avatar for charis89

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 …

Member Avatar for Salem
1
156