Dwebdesign's Posts
Nairaland Forum › Dwebdesign's Profile › Dwebdesign's Posts
1 2 3 4 5 6 7 8 9 10 (of 19 pages)
Am happy to hear this. Goodnews about my country Nigeria in a long time. change will come and stay. A better and true giant of africa will rise again and the day when naira was stronger in value to the $ dollar will come. Am not dreaming. I believe In Nigeria. |
onihaxy:You need a good website designer or an a developer skilled in website designing languages to build a website for you at cheap and affordable price.? We will help you build your website with custom features, a professional touch, a mobile friendly and search engine optimised( SEO) website. No matter how big or complex your website project is, we will handle it for you, we have done that and are willing to share our portfolio with you. Contact us today. Mobile: 08133884165 WhatsApp: 08133884165 BBM: 2BB63350 We are skilled with expert level knowledge in languages as: HTML/HTML5, CSS/CSS3, PHP, MYSQL, Javascript/Jquery, JqueryMobile,Bootstrap. CMS(content management systems)-> (WordPress, Joomla, Opencart, Magento, Whmcs, Drupal and Pulse Cms, blogger ). |
in addition , to display the message on the same contact page that hosts the form, in your form, let the action attribute value be empty, so that the form posts to itself, like this <form method="post" action="" id="contact-form" class="porfolio_form" /> <!--YOUR FORM FIELDS HERE--> </form> <?php //then your php codes then the message to display if no error and if data submitted is valid. ?> hope this helps. |
develop a custom module for the result checking, you will need understand the development aspect of joomla to do this. Alternatively, you can hire a joomla developer to develop it for you. I am one. contact with details below at my signature. happy sunday. |
no primary knowledge of css? i think one should. css3 is a continuation of css2. so one should have a little knowledge of css before going advance. a good initiative though, lets learn from you. |
Www.TheLogoNow.Com , comment on this: creative website, well blended colours, proper use of icons and easy to navigate. A quick one, instead of using html5 video tags for the video on the homepage, i noticed it takes time to load, why not upload to youtube and then embed the code. well one, well done. |
i can build that for you according to your specification of PHP/HTML. check contact details below at signature. |
visited the website, i can develop the website, will be ready in three days. i have seen the features such as >the background video which was muted so you don't hear the sound >the jasny bootstrap offcanvas menu by the side, this does not toggle onMouseOut, i will make yours to toggle. >every sections of the website is noted also and all the forms noted too. contact : whatsapp/mobile: 08133884165 BBM: 2BB63350 |
to achieve that you need to understand the wordpress loop, and how to use the wordpress template tags and functions. just to help out, when a wordpress site is initiated, certain loops run, one of the type is for the posts and also for custom post types. just to be clear and help out, go to your loop.php, where the loop runs, you should see <?php if (have_posts()): while(have_posts()): the_post(); ?> // this is the loop. now next you use the template tags to structure the results of the loop/query. to out just the titles of the posts alone linked to the single page for the post, use the wordpress template tag, "the_title()" , and the link it up , so you have <a href="<?php the_permalink();?>"><?php the_title();?></a> then end the loop, <?php endwhile; endif; ?> that will give you the layout. for the image thumbnail, its all css. you can contact me to write the template for you . so the code looks like this all together: <?php if (have_posts()): while(have_posts()): the_post(); ?> <a href="<?php the_permalink();?>"><?php the_title();?></a> <?php endwhile; endif;?> then you use css for the image thumbnail on the single.php file, also you will need use wordpress function called the_post_thumbnail(); on a single post page, to achieve what is up there, write in your single.php file, <?php get_template_part('loop');?> <?php the post_thumbnail();?> thats all, if you don't understand, contact me below: |
Hi, I am a wordpress developer, i develop wordpress plugins and themes. i just finished developing a wordpress plugin for businessdayonline.com that helps to query interswitch webpay service to know the status of transactions made by members subscribing to news updates monthly. i can help you develop and teach you wordpress plugins development . whatsapp: 08133884165 Mobile: 08133884165 BBM: 2BB63350 |
in addition, to use it on your document after importing it from google.com/fonts, apply it to any selector, to make it apply to the document , for example, and also give a fallback font use: html{ font-family: presido, sans-serif; } where presido is the google font name and sans-serif is the fallback. good tutorial @roaringlamb01 |
creative coding! I Love working with API's alot. good one bro |
I can help you develop the theme on wordpress. Custom theme. If interested, contact: Whatsapp: 08133884165 |
You are on a local server, either xamp or wamp on windows or mamp on mac. If you want to upload files to your public root, just copy and paste the file in your site installation folder. If in xamp, open htdocs folder, locate your website folder and paste the files as you need be. If using wamp same method just that you locate your website folder inside the "www" folder. If you still prefer using ftp, You will need locahost as the host alone. Other fields will be empty. You can still use port 21 though. Hope this helps. |
This has to do with the template you using for the opencart store. What you need do is to trace where the error is coming from, from your theme files. Use google console from your developer tool. It will show you the error and from where. I can't point to the name of the file and code line because template differs. Reply if still not able to solve it. |
CLASS 1: Object Oriented Programming is a programming technique that helps in writing reusable codes and cleaner codes. What is an object? When a class is instantiated, an object is formed. Let's relate with our environment to as to drive down the meaning of an object and a class. Houses: Before a house is built, there is a blueprint that shows the plan of the house, what it will contain, the rooms, the ways the house will function and the variables used in forming the house like cement and the rest, variables. Though this is not the house(object) but a blueprint of how the house will look( a class). From the illustration above, we know understand what it meant when its said that when a class is instantiated, we get the object of the class. A class is like a blueprint for a house which is not real, the house built as a result of the blueprint (class) is the house (object), It may be confusing at first, just follow along. Let's start the coding so we understand more, To create a class, use the keyword "class", <?php Class nairaland { Function __construct (){ echo "hello, this is my first OOP class"; } } Now you have created your first class in PHP OOP. Now, instantiate the class to get the object, and we do so below using the keyword "new" and the class name, so: we have, new nairaland; Let's store it in a variable, so we have $firstclass= new nairaland; the call the constructor function that runs always whenever a class is instatiated. Do it like this: echo $firstclass; If done alright and all steps followed, you should have "hello, this is my first OOP class" echoed out. To understand that we are truly dealing with an object, do this test, $var_dump($firstclass); Or print_r($firstclass); Okay, that's introduction, Drop any question. |
make the height of this webpage 100% just set in div you are using for the content in the middle, the height to 100% like #div{ height: 100% } so that the remaining side of the site is not empty as it is now. make more improvements though. |
if i don't reply you @mackmanuel, it will show that all you are saying is true. first and formost, someone did a whois search for you and gave you the DNS, yet you said whogohost said you are not hosted with them, please how is that possible yet the DNS prove different. second, you asked for your hosting details which i sent to you. you gave the work to someone else and things got messed up, i know you don't care to tell others about this. and here you are saying i deleted your website? thirdly, you delayed the work because of fund. the hosting details you were asking for, did i not send it to you? Please do not come up here to say things that are not true. thanks. |
you can use the ID in the database to get all the information. create a form to accept the ID and the run an sql then select all the information from the provided ID. <form method="post" action="display_courier_info.php"/> <input type="text" name="id" value="" placeholder="enter tracking ID to get tracking updates"> </form> THEN IN YOUR 'display_courier_info.php' file that you will create, RUN THE QUERY BELOW: $id=echo $_POST['id']; $sql= SELECT * FROM tablename WHERE id='$id' ; $result=mysql_query($sql); if($result){ echo $result; } else { echo 'ERROR:' .mysql_connect_error(); } I AM A PHP, MYSQL Web Developer and a WORDPRESS DEVELOPER( i develop custom plugins and themes ) and works with API's. |
Contact me, details at my signature. |
webincomeplus:I CAN HELP YOU CRAFT THE PAGE AS YOU WANT. CONTACT: 08133884165 |
Morning, i just want to teach few that may need this tutorial, how to customise the bootstrap 3.x navbar component. what makes you different is your ability to customise the bootstrap 3.x components. so lets start. after linking to the bootstrap minified css file in your html document head tags, create a new css file and call it custom.css or any name you want. find the location of the css file your just created and link it up in your head tags like this <link rel="stylesheet" href="PATH TO THE CUSTOM CSS FILE" /> Now open your body tags <body> <!--declare your navbar--> <nav class="navbar navbar-new"> <div class="container-fluid"> <nav class="navbar navbar-default"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="#">LOGO</a> </div> <div> <ul class="nav navbar-nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#">link 1</a></li> <li><a href="#">link 2</a></li> <li><a href="#">link 3</a></li> </ul> </div> </div> </nav> </bod> NOW, go to your css custom file, and write, .navbar-new{ background-color:#000080; /* or any color you want */ border-radius: 0 !important; /* to remove the rounded corner that comes with the bootstrap default navbar style*/ /*YOU CAN SPECIFY OTHER PROPERTIES AND VALUES*/ } if you want to customise any other boostrap components, follow this pattern too. hope this helps. Am a boostrap 3.x Expert, I craft awesome UI for web apps. contact for further talks. |
I can help you out. contact me 08133884165. |
To follow website developer, know about pseudo elements and classes? today i want to share a short lesson on css pseudo elements. these elements helps to create great design with less coding. the pseudo elements are listed below: 1. the ::before pseudo element, this is use to display content before an html element is rendered on the browser. for example, lets say you have a paragraph like this <p>how are you today</p>. for example if you want to make some words appera before rending the content of the <p> tags, you can use the ::before seudo element. syntax is : p ::before{ content: "what should appear before rendering of the content in the <p> tags" , you can specify other properties and value here too like you do in css } so the above will render: "what should appear before rendering of the content in the <p> tags how are you today". you understand? 2. the ::after pseudo element: this works just like the ::before pseudo element just that the content is displayed after the tags. 3. the ::first-letter 4. the ::first-line pseudo elements. want me to write for your web developement blogs. whatsapp/mobile: 08133884165. I am an expert website developer. |
arm4u:You need a good website designer or an a developer skilled in website designing languages to build a website for you at cheap and affordable price.? We will help you build your website with custom features, a professional touch, a mobile friendly and search engine optimised( SEO) website. No matter how big or complex your website project is, we will handle it for you, we have done that and are willing to share our portfolio with you. Contact us today. Mobile: 08133884165 WhatsApp: 08133884165 BBM: 2BB63350 We are skilled with expert level knowledge in languages as: HTML/HTML5, CSS/CSS3, PHP, MYSQL, Javascript/Jquery, JqueryMobile,Bootstrap. CMS(content management systems)-> (WordPress, Joomla, Opencart, Magento, Whmcs, Drupal and Pulse Cms, blogger ). |
prettytasha:you are welcome. i appreciate all your doing over here. soon, there will be a site to tutor web development and you get paid. courses will start from N3K. imagine 100 students enrolling, thats N300K. so keep gaining and gathering the skills. |
you have plenty of options to do these, 1. you can use jquery ui Autocomplete, where immediately they type a letter, all matches will be show , that is on keyup of a letter. 2. another is to use php IMPLODE() function in which you specify a delimiter and then use MYSQL clause "LIKE" or "BETWEEN". 3. you can also use jquery $.post or $.get methods. you can read more on this so as to use them. |
Turn your query into an associative array, And run a foreach loop to get all the results. $row= mysql_fetch_assoc($query); Foreach ($row as $output){ echo $output} ; Also since you want the details displayed in table. You also have to create table using html and structure the results of the associative array returned. You will get all the data displayed in a table . |
To configure the success page if on a store website, check for the last transaction ID, and check if it returns 1 or 0. If 1, you can the redirect to a success page, query the transaction details and status and then display it on the success page. Read the GTpay integration docs well, you will understand what am saying. I do integrate online payment methods including GTpay, You can contact me for further help, Mobile / whatsapp: 08133884165 BBM: 2BB63350 |
would you like to know PHP OOP? If you want to learn how to write cleaner code and reusable codes to be used for multiple projects. then OOP is a must learn for you. It simplies the php programming and helps you write reusable codes. i would like to know those interested so as to know people are interested to learn. indicate if interested. |
PerfectlyPerfect:check your browser connection settings like proxy and port. use no proxy. you can also flush your browser cache. This two fixes the problem. am an expert wordpress developer . you can contact for further help. mobile: 08133884165 whatsapp: 08133884165 BBM: 2BB63350 |