Ace26's Profile
Reputation: 40
Craftsman
- Group:
- Active Members
- Active Posts:
- 179 (0.1 per day)
- Joined:
- 10-August 08
- Profile Views:
- 11,080
- Last Active:
Apr 10 2013 04:06 PM- Currently:
- Offline
Previous Fields
- Country:
- NG
- OS Preference:
- Windows
- Favorite Browser:
- Chrome
- Favorite Processor:
- Intel
- Favorite Gaming Platform:
- Who Cares
- Your Car:
- Toyota
- Dream Kudos:
- 0
Latest Visitors
-
TurkogluTurk 
16 Jun 2013 - 14:10 -
brep 
27 Sep 2011 - 15:10 -
RudiVisser 
05 Sep 2011 - 01:03 -
aaron1178 
28 Aug 2011 - 04:15 -
chukwuemmanuel09 
24 Aug 2011 - 17:11
Posts I've Made
-
In Topic: [Link] Firefox to Block Silverlight and Java, but not Flash
Posted 23 Feb 2013
Call me paranoid, but I smell an anti-Microsoft technologies scheme here.
[Edit]
Now I've read the article, my (out-of-place)paranoia has been put to rest.
-
In Topic: Today's programmer is not such innovative as past's
Posted 18 Sep 2012
With the passage of time came more sophistication in technologies used in each era. The innovations of the succeeding generations will always be built on the "innovations" of their predecessors; this cycle continues on and on, and on... until the end of time.
Programmers of this era are very innovative too with what we have and where we find ourselves. We don't have to go back in time and re-invent the wheels to prove that. After all, the innovations of our predecessors was meant to be for our benefit so that we can go on and be innovative on our own based on their own innovations!
I hope you get my drift @OP. -
In Topic: Weird Email From DIC Member
Posted 21 Apr 2012
Sad, I come from the same country as people known for this sort of scam. So not proud to call such my country men right now.
However, just because certain Nigerians are known for this sort of stuff, doesn't necessarily mean that mail originated from a Nigerian! -
In Topic: Limit SQL query based on Pagination Script
Posted 30 Oct 2011
I think the link you pointed us to explains it all well. But if I understand your question thoroughly, then I'd suggest you do this in your script.php:
replace
$sql = mysql_query("SELECT * FROM posts WHERE type= 'image'");
in script.php with
/Include the PS_Pagination class include('ps_pagination.php'); //Connect to mysql db $conn = mysql_connect('localhost', 'username', 'password'); mysql_select_db('testdb',$conn); //Query to pass to pagination class $sql = "SELECT * FROM posts WHERE type= 'image'"; //Create a PS_Pagination object where 8 is the number of rows to be displayed per page //and 3 is the number of navigation links per page $pager = new PS_Pagination($conn, $sql, 8, 3); //The paginate() function returns a mysql result set for the current page $rs = $pager->paginate(); //Loop through the result set just as you would loop //through your normal mysql result set while($row = mysql_fetch_assoc($rs)) { echo $row['id']; ... //then all your alerting logic here... }
This way you will be alerting only 8 id's per page. Does that solve your problem? -
In Topic: Interfaces vs Abstract classes
Posted 30 Oct 2011
My Information
- Member Title:
- D.I.C Head
- Age:
- 28 years old
- Birthday:
- October 26, 1984
- Gender:
-
- Interests:
- I enjoy playing football, martial arts, movies, music and programming. That's pretty much about it.
- Years Programming:
- >1
- Programming Languages:
- c#,javascript,php.
Contact Information
- E-mail:
- Click here to e-mail me
- Website URL:
-
http://
- Yahoo:
-
oswaldjsmith@yahoo.co.uk
- Facebook:
- http://facebook.com/oswald.ace26
- Twitter:
- ace2610
|
|


Find Topics
Find Posts
View Reputation Given

|
Comments
codeprada
16 Jun 2011 - 04:51Dheerajlal
25 Jun 2010 - 04:05