Guyson's Posts
Nairaland Forum › Guyson's Profile › Guyson's Posts
1 2 (of 2 pages)
Mologi:No, that is villa toscana hotel, enugu. Mr Ibu is one of their promoters I have taken some shots with him there |
Get source code for the following Web project (8k per hour) 1. Custom CMS website with admin panel for you to create, edit, and delete a post on the go. PHP + MySQL Programming. 5hrs 2. Shipping Online Tracking System. PHP + MySQL Programming. 1hr 3. Exam Application System. JavaScript Programming. 2hrs 4. Login System. PHP Programming. 2hrs 5. Ask for your custom project NOTE: The above project focuses on development, as the design aspect is up to you. Contact Guyson C.U |
Buy or sell quality source code for Web Application Development. Post yours or make inquiry |
WRONG @YOU Problem 1 Error on line 2 (close the title tag with a forward slash (/title) as follows) 2 <head> <title>Sample Web Page</title> Error on line 9 (close any element that you open </p> ) 9 <p>And here’s a new paragraph to round things out.</p> Problem 2 Error(s) on line 3 and 4 (replace it with the following code) 3 <link REL="stylesheet" TYPE="text/css" 4 HREF="mystyles.css"> Error(s) on line 5 and 6 (you failed to put ( ; ) at the end/back of yellow, bold and blue. Replace it with the following...) 5 <style type="text/css"> h2 {color:lightgreen; bgcolor:yellow;} p {textalign:justify; text-weight:bold;} p intro {textalign:center; color:blue;} 6 </style> That should solve it |
ribechi:True |
HOW TO DESIGN A WEB PAGE USING HTML http://askguyson.com/how-to-design-a-web-page-using-html/ |
baba11:If it is a java program, copy and paste the source code in the code view of a java third party software (like netbeans) and run the file. If it is a C++ program paste it to a C++ third party software. If you can't program, look for a programmer around you |
NO, I don't think you uploaded the druid folder to public_html folder. If you want to access your site directly from "Kilopaty.com", upload an index.php page or index.html page to public_html folder. If you want to access it from "Kilopaty.com/druid/doop.php", make sure you upload the druid folder to public_html folder. Tutorial on Website Hosting with FileZilla: http://askguyson.com/website-hosting-with-filezilla/ |
I might not post everything here, you can follow up the tutorials at: http://askguyson.com/how-to-build-php-mysql-cms-website-part1/ |
baba11:You are welcome |
Download it from this link https://www.dropbox.com/s/rzfdwphxe6rx78s/payroll%20management%20system.cpp.zip Unzip it |
Insert content data into modules table FIRST ROW Id = 1 Name = footer Modulebody = (c) copyright BlahBlah Designed by YOU This row will bring out a footer at the bottom of the page FOR SECOND ROW Id = 2 Name = custom1 Modulebody = This is my custom module...I can put any HTML data here With this row you can put any HTML data to be displayed on the right hand side of your index page. As you can see on the demo page at http://www.demo.askguyson.com I created a login form on the right hand of my index page. If you want to put a form on yours, erase "this is my custom module..I can put any HTML data here" and put your form code Now, I will give you the source code, copy and paste it at the top of your index page. The source code is for connecting to database and retrieving content from the database tables. |
baba11:Is the the third party software payroll manager or you are trying to build a payroll management system in C++ You shouldn't be looking for source code used to develop a program/software, I.e if you wrote the program yourself. I can't help you if you don't know the answer to my questions |
baba11:Which programming language did you use to develop the program? Which third party software did you us to develop the program? |
Now it is time for us to insert data in the database and call the data to be displayed on our index.php page Insert the following data into the pages database Pagetitle = Home page of my website Linkabel = Home Pagebody = welcome to my home page Pageorder = 1 Showing = 1 (select 1 from the radio button) Keywords = how to buld dynamic website Description = blah blah Lastmodified = "click the button to select the date" Extra = leave it blank That is for creating the the first row (each rowholds the content of one page/post), then when that row is called on the index.php page it will display "home" as the link on the left side of the page, it will display "welcome to my home page" in the middle column whenever the home link is clicked, it will display "home page of my website" as the title of the page. You can insert more rows to create more pages/post (eg: for about page, contact page, or whatever page/post you want) but make show you increment the pageorder manually After that we would move on to inserting data in the modules table |
Just seeing this post now. I understand you perfectly well. For example if you created a calculator, the user will only be seeing and using the calculator in Graphical User Interface (GUI) format. What your supervisor is asking for is the code(s) that brought out the design and functionality. Copy and past it to a text editor. Some supervisors might want you to copy it to CD and submit to them (soft copy), others might want you to print and submit the hard copy An illustration of Java source code with prologue comments indicated in red, inline comments indicated in green, and program statements indicated in blue
|
debeginin:I meant one table data for the first table row, three table data for the second row, and one table data for the last row. The following code should do it <Table width=100%> <Tr><td width=100%><h1>Website Name</h1></td></tr> <Tr><td width=15%>Menu</td><td width=70%>Body</td> <Td width=15%>CustomModule</td></tr> <Tr><td width=100% align=center>Footer</td></tr> </table> Copy and paste the code in your text editor (like Notepad) |
Creating the Second Table Table Name: modules Number of fields: 4 With the following fields: id name modulebody showing Set the id to auto increment and make it the primary key, name varchar (255), modulebody text, and showing enum ‘0’,’1′ and default = 1. we are now done with the second table. The first and second table should look like this
|
To get a feel of what we are about to build, you can view the demo online at http://www.demo.askguyson.com on your desktop browser. It is ugly but it works perfectly well |
5. Create tables in the Database you created in Step 1 For this project we are going to be creating two(2) tables. FIRST TABLE Name: pages Number of fields: 10 With the following fields: id, pagetitle, linklabel, pagebody, pageorder, showing, keywords, description, lastmodified, extra Set the id, to auto increment and primary key, pagetitle varchar 255, linklabel varchar 255, pagebody text, pageorder int 11, showing enuum '0', '1' default 1, keywords varchar 255, description varchar 255, lastmodified date, and extra varchar 255. We are now done with the first table. Now we are going to move on to creating the second table |
When you are done with creating the template, we will move on to the next step |
You can use HTML table to create the layout using the 1:3:1 format. Or just use HTML & CSS to create the layout for the template. Mine was created using HTML & CSS. |
Name the folder: MyCustomCMS and create a sub-folder named scripts inside the MyCustomCMS folder. 4. Building the index page In this tutorial I'm not going to focus on designing, rather I will be focusing on functionality (development) Create and index page for rendering all your Pages/Post. The benefit of CMS is that you don't have to create a static html or php page for every Page/Post. All the Pages/Post will be displayed on your single index.php page. Create an index.php page like the following
|
STEPS 1. Creating MySQL Database on your server I am going to skip this step coz I believe we know how to create a MySQL Database on your server. Or you can read the tutorial at http://askguyson.com/creating-mysql-database-on-your-server/ 2. Connecting to your MySQL Database I will also skip this step, read at http://askguyson.com/connecting-to-your-mysql-database/ 3. Creating a Main Project file Create a folder where you are going to store the files for this project. You can create it on your desktop or in www directory for those of you working with a localhost server |
Try not to ask people to help build your site for free. Pay attention best you can build it yourself WordPress and Joomla are much more powerful that what we are going to be building. This will give you insight into how to get started with your own system to offer your clients and have total control of design and programming |
in this lesson which is going to be very in-depth and i am going to go really very slow and we are going to do raw data management systems from scratch which are equivalent to content management systems. They are systems that you can create, or you can download template system and use to give to clients or use for yourself to have a dynamic PHP and MySQL Website. That is what both WordPress and Joomla are, they are dynamic PHP and MySQL Website and what they do is that they store data of the sites essentially in a MySQl database and PHP interacts with that MySQL database to render all the pages and the menus. I will take you through starting the whole system from scratch, building the MySQL database and basically where you can hand it over to a client. In this tutorial I am going to be working in PHPMyAdmin. This system is suited for people that enjoy creating their system from scratch and ideal for ecommerce or deep data indexing systems, on or off the Web. What We Will Need 1. Basic HTML, CSS, PHP, and MySQL Knowledge, and a HTML/Text Editor 2. Online Live Server that Processes PHP and is MySQL Ready, Equipped With PHPMyAdmin I recommended an online server rather than installing and setting up WAMP, LAMP, etc. If you have it running already use it, but if you have not set that up before don't even try it. To use an online server, go online and get a domain and hosting that is PHP & MySQL ready and you will be able to access PHPMyAdmin from your Control Panel (cPanel). If you are running an online server you will also need: 3. Good FTP Software tha Has Folder Creation and File Permissions Control (FileZilla) 4. Free WYSIWYG Text Editor (Preferably JavaScript Based) What If I Get Stuck or Need Assistance? 1. Try Forums like nairaland, Although NO Help Guarantees In a Free Forum 2. Or Hire Guyson TO Help You Produce The System |
2835EFC6 |
geepee211:Where do you want to store the form details (email or database)? |
Where do you want to store the form details (email or database)? |
So here we go again! PHP, one of the strongest languages in the whole web design world! If you know how to use it you have the power. Here I have PHP codes and scripts where you can easily use it on your websites! So enjoy, you'll love this open source codes that I have in different categories such as Database, Forms, Emailing! Drop your PHP / MySQL problem here and get quick solution |
1 2 (of 2 pages)