Our special Christmass article focus on listening item for sell on bazaar page. Data are obtained from registered user, inserted into a database and because default published filed in bazaar_item table is false, waiting for admin approval. In final version, this page is available only for registered user.
Expectation from sellingitem script
In final applicaton, selling page is available only for common registered user. User must be able do these things:
decribe name and price for selling item
add up to three different photos
select category with subcategory
provide any further describtion for selling item
item is not listed for sell untip approval of admin of the page
After sucessful post for sell, short describtion about adding document to a database is generated in pottom part of form.
After finalizing other main parts of app responsible for user management, we will add column for marking selling by users_id for difrerentiating of the seller. When someone decide to buy any their item, seller must be notified about buy and must fullfil item delivery.
Visual look of the page
Sell item page consist from sell form and list of published item for sell. In the middle part, ist optionaly after succesfull post displayed short info about user action.
Implementation of functionality
Main part of page consist form form part. In this part is insered script for generating available category list obtained from bazaar_category table.
Separate par enable selecting up to three files fortransfer. First screenshot of product is required and can not be ommited. Other two are optional as you can see. Separate Javascript code is responsible for listening file path after selecting them into a dialog field.
Next output show contetnt of the form:
<form enctype=„multipart/form-data“ method=“post“ action=“<?php echo $_SERVER[‚PHP_SELF‘]; ?>“> // because data file transfer enctype must be defined in form tag!!!
die(„ERROR: Could not connect to database. “ . mysqli_connect_error());
};
// create SELECT query for category names from database
$sql = „SELECT subcategory_id FROM bazaar_category WHERE category = „.“‚$category'“. “ AND subcategory = „.“‚$subcategory'“ ;
// execute sql and populate data list with existing category in database
if($output = mysqli_query($dbc, $sql)){
if(mysqli_num_rows($output) > 0){ // if any record obtained from SELECT query
while($row = mysqli_fetch_array($output)){ //next rows outputed in while loop
$subcategory_id = $row[‚subcategory_id‘] ;
}
// Free result set
mysqli_free_result($output);
} else {
echo „There is no souch category-subcategory in category table. Please correct your error.“; // if no records in table
}
} else{
echo „ERROR: Could not able to execute $sql. “ . mysqli_error($dbc); // if database query problem
}
// Close connection
mysqli_close($dbc);
// Controll if all required fields was written
if(!empty($name_of_item) && !empty($price_eur) && !empty($subcategory_id) && !empty($screenshot1)) { // these item identifiers are mandatory and can not be empty
// If check passed – all needed fields are written
// Check if E-mail is valid
// move image to /images final folder from demporary download location
$target1 = IMAGE_PATH . $screenshot1;
$target2 = IMAGE_PATH . $screenshot2;
$target3 = IMAGE_PATH . $screenshot3;
// !!! Add entry to the database and redraw all score in chart list descending from highest score
// insert into databse
if (move_uploaded_file($_FILES[‚screenshot1‘][‚tmp_name‘], $target1)) {
$msg = ‚New item ‚.$name_of_item. ‚ for ‚. $price_eur. ‚ € succesfully added to sell item – waiting for admin approvall.‘;
$msgClass = ‚alert-success‘;
} else {
$msg = „ERROR: Could not able to execute $sql. “ . mysqli_error($dbc);
$msgClass = ‚alert-danger‘;
}
// end connection
mysqli_close($dbc);
} else {
// Failed – if not all fields are fullfiled
$msg = ‚Please fill in all * marked contactform fields‘;
$msgClass = ‚alert-danger‘; // bootstrap format for allert message with red color
};
};
};
Conclusion and other thoughts
Our page must be updated with code displaying its content and menus diferently for loged in user or anonymous users. Next improvement is expanding/ altering code to mark added item by users_id from active session for distinguishing between submitters.
Full code of application in as is current state can be obtained for further study from here.
We inform you that we use cookies and other technologies on this site to function and improve the operation of the site, ensure it, provide social networking features, personalize content and ads to users, and analyze traffic and user behavior. For more information, please read our Terms of Use and Cookies. You can prevent cookies from being processed by changing the settings in your Internet browser.OkPrivacy policy