March 10 2010 23:35:32
Navigation
Last Seen Users
TCBKINDH< 5 mins
Lordx< 5 mins
yanokage00:06:06
Wenon00:07:58
spooninear00:08:18
maha515200:09:04
madness54600:09:16
Kobe00:12:14
scathing00:12:34
chris9000:12:35

Members: 13,474
Newest: BULIT
Blogs
Diemux
» 18-09-2009 - Say ...
Diemux
» 10-07-2009 - Will...
Diemux
» 24-06-2009 - Blog...
elyn
» Elyn + Streamyx (...
Diemux
» 19-05-2009 - Thin...
Diemux
» 15-05-2009 - Week...
Diemux
» 13-05-2009 - Comp...
elyn
» Number 1925
Diemux
» Number One
Things to Do
Latest Articles
Protect your Fusion ...
Change your database...
Handling MySQL Datab...
Admin Control Panel ...
How to Secure Your I...
Show Content by Defa...
v7 | Add social book...
v7 | Custom MySQL er...
How To: A PM after r...
v7 | SEO friendly UR...
v7 | SEO friendly UR...
Comments Advanced Vi...
Auto-redirect to the...
A tour through PHP-F...
Upgrading to PHP-Fus...

View all articles
Downloads v7
Currently popular Downloads

FusionBoard 4 3155
Video Gallery 2266
Professional Down... 2230
Photoalbum Mass U... 2051
Avatar Studio 1993
Extended Profile 1687
VArcade 2.1 1581
HighSlide Gallery... 1554
XHTML mod for mod... 1441
Button panel 1439

Latest Downloads


User Info [Remade] 260
BBcode: AVI 3
Pimped PHP-Fusion 2
XHTML mod for modern... 1441
Banner Rotater 861
Who's Where Panel 729
VU Tab Panel 379
Viewlog Script 184
Usergroup Management 650
Unauthenicated User 183

Latest 100
Downloads v6
Currently popular Downloads

Banner System v2.0.4 1411
Video Gallery 1063
Extreme Theme Editor 813
Fuzed Shoutbox 703
Seoname.php 664
Icon Package 2.0 651
Extended Profile ... 610
EXTboard 542
News.php 540
Tabbed welcome panel 488

Latest Downloads


Google Sitemap Fast 3
ExtBoard 1.2 366
EXTboard 542
v6.01.18 - v6.01.19 20
v6.01.19 FULL 54
Birthday 88
Moneybookers 32
User info 74
Link to us 244
jNews.php 312

Latest 100
Provider
PHPfusion-mods.net is hosted at:

110MB
Handling MySQL Database on php-Fusion
Before i start anything, i will hereby take for granted that you (reader) understand/know/learn MySQL to a certain level. Even, if you don't know anything about MySQL, this might help you start. And now, we may start.

MySQL database functions code snippets

function dbquery($query) {
}

function dbcount($field, $table, $conditions = "") {
}

function dbresult($query, $row) {
}

function dbrows($query) {
}

function dbarray($query) {
}

function dbarraynum($query) {
}



These are the functions' declarations on maincore.php. No, you don't have to open maincore.php, this is just a sample i wanted you all to look. From there, it should provide you with some idea of how this functions works. If you don't seems to understand the idea, don't worry. i'll will explain each functions.

1. dbquery($query)
This function executes a query on a MySQL database and then it returns a value. If the query failed, it will produce error message and return "false".

dbquery() is followed up by other function listed above accept for dbcount(). There are only one parameter for this function: the SQL query. Like mysql_query(), dbquery() is also used for UPDATE, DELETE, INSERT, and CREATE. You won't be using CREATE though.

Examples
see examples for other functions except dbcount(). :P


2. dbcount($field, $table, $conditions = "")
This function executes a COUNT query on a MySQL database and then it returns a value. COUNT query means it counts the total value of records found. If the query failed, it will produce error message and return "false".

dbcount() does not requires a result from dbquery(). dbcount() is usually used for paginations.
dbcount() has 3 parameters, two of which are required.
first paramenter -> $field
signifies which field in the table to be count
second parameter -> $table
signifies which table to be count
$conditions = ""
signifies the conditions of the field that need to be met.
conditions in MySQL is the
"WHERE field_name = 'some_value' AND field_name2 = 'other_value'"

Examples
this example returns the values of increment of 10 starting from 0. e.g, 0, 10, 20, 30 .. and so forth


$count = dbcount("(data_id)", DB_DATA, "data_access='".$d_ac.");
$count = ($count / 10) - 1;
$d_count = ceil($count) * 10;
if (!$d_count){
$d['error'] = "Cannot count data";
}


3. dbresult($query, $row)
A clone of the mysql_result() function that returns the value of a field in a recordset. If the query failed, it will produce error message and return "false".

dbresult() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA." WHERE data_id = '{$_GET['p']}'";
$result = dbquery($query);
$d['name'] = dbresult($result, 1);
if (!$d['name']){
$d['error'] = "No Name found";
}


4. dbrows($query)
A clone of the mysql_num_rows() function that returns the number of rows in a recordset. If the query failed, it will produce error message and return "false".

dbrows() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA.";
$result = dbquery($query);
$d_rows = dbrows($result);
if (!$d_rows){
$d['error'] = "Cannot count rows in data table";
}



5. dbarray($query)
A clone of the mysql_fetch_assoc() function that returns a row from a recordset as an associative array. If the query failed, it will produce error message and return "false".

dbarray() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA." WHERE data_id = '{$_GET['p']}'";
$result = dbquery($query);
if($db = dbarray($result)){
$d['id'] = $db['data_id'];
$d['name'] = $db['data_name'];
$d['desc'] = $db['data_desc'];
$d['access'] = $db['data_access'];
}
else{
$d['error'] = "No data found";
}


6. dbarraynum($query)
A clone of the mysql_fetch_row() function that returns a row from a recordset as a numeric array. If the query failed, it will produce error message and return "false". This function is very similar to dbarray, you will understand after reading the example

dbarraynum() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA." WHERE data_id = '{$_GET['p']}'";
$result = dbquery($query);
$d = dbarraynum($result)
if(empty($d['id'])){
$error = "No data found";
}
Comments
#1rvt on April 19 2009 15:04:18
rvt
Under 4. dbrows($query)
you mention that dbrows returns false when the query fails,
however you check the return value like this if (!$d_rows) {....}
You should be using this:
if ($d_rows===false) {..... querie failed ...}

other examples:
if ($d_rows===0) {..... query returned 0 rows (but not false) ...}
if ($d_rows>0) {..... query returned more then one row...}

In your case you would throw that error when when the number of rows from the query would be zero (0) whish is perfeclty fine for some queries.
#2elyn on May 27 2009 23:27:15
elyn
test
Post Comment
Please Login to Post a Comment.
Ratings
Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Login
Username

Password



Not a member yet?
Click here to register.

Forgotten your password?
Request a new one here.
Our Coders
Rizald 'Elyn' Maxwell
Diemux
Netrix
Donate
Shoutbox
You must login to post a message.

10/03/2010 20:10
Cool, added the download again Smile. Also cleaned inbox Smile

10/03/2010 13:41
Ohh - your inbox is full btw!

10/03/2010 13:40
@Diemux: I've re-coded the naptzer_user_info - from the "z-dump". You can DL it from here: www.dvdside.dk/do.
..r_info.zip

10/03/2010 00:07
So if you have some spare time Smile

10/03/2010 00:07
Introduced the "z dumb" category in v7 downloads. There reside the infusions who need some TLC to work again.

09/03/2010 19:35
Removed spam.

09/03/2010 17:38
New spammer: dottech Thumb Down!

08/03/2010 17:23
hello everyone Frustrated Cry help

08/03/2010 16:39
SPAMMER: ekingqqq

08/03/2010 09:12
did someone get this http://www.phpfusi
on-mods.net/infusi
ons/downloadsv7/dl
db.php?op=view&id=2
83 funcionally ?

Advertiser
One-click Translation
Translate This Site

Render time: 0.17 seconds 3,980,777 unique visits