-
Replied To a Post in how to create album in wordpress
At the admin panel you can add pages; album, then individual pages for your respective albums. So on the main album page you insert images (cover pics for the respective … -
Began Watching Display table entry in 2 lines in HTML
I want to split a line into 2 lines. I built my line like this: method = "Email " + TitleOwnership.VehicleOwnership + " Title " + Environment.NewLine + "ORI " … -
Replied To a Post in Display table entry in 2 lines in HTML
Kind of wierd codes here. Can you please clearify your codes? We are always here to help but can't help if we don't understand what we are seeing. -
Began Watching WYSIWYG editor with support of PHP and HTML
Hello, I search wysiwyg editor with fully support of HTML and PHP. I dont want extra <p> and <b> tags after <?php and before ?>. I prefer to work with … -
Replied To a Post in WYSIWYG editor with support of PHP and HTML
Yh, also using WYSIWYG won't help you when it comes to maintaining your codes and debugging. -
Began Watching Why you don't want to mix PHP and HTML directly.
PHP is an object-oriented language, based (loosly) upon C++. It has classes, methods, member variables, and all that other good stuff. It runs on your web server, not in the … -
Replied To a Post in Why you don't want to mix PHP and HTML directly.
what took you so long to post this. You are great! -
Began Watching Run PHP as a Cross-Platform Desktop Application
Recently I've stumbled on a nice tool that I really quite like, so I thought I'd share it: Personally, I love the power behind PHP. I find it a very … -
Replied To a Post in Run PHP as a Cross-Platform Desktop Application
thanks man, i got to look at this -
Began Watching Part Two: PHP MVC Framework , Template Files For TBS and Smarty
This is a continuation of our basic tutorial on MVC Framework. In this section, we will be creating the template files for both the TBS and the Smarty template engines. … -
Replied To a Post in Part Two: PHP MVC Framework , Template Files For TBS and Smarty
Awesome, your tutorials are very understandable. -
Began Watching Separation of Business logic and Presentation logic for non OOP.
This tutorial is intended for people who are looking for alternative to PHP template engines like smarty, twig, dwoo, TBS, and others. Not all developers are willing to take the … -
Replied To a Post in Separation of Business logic and Presentation logic for non OOP.
Thumbs up, very very awesome, you just pin pointed my most hated thing in PHP, spaghetti codes. -
Began Watching SEO Friendly/Aware Redirect of a URL
# SEO URL Redirection Basics: TUTORIAL # First you can see/get/use some code here. <?php /** * Redirect the visitor to another URL using a proper status code. * * … -
Replied To a Post in SEO Friendly/Aware Redirect of a URL
Not all that understandable but thanks for your time. -
Began Watching Password protecting a site
Making sites is nice and fun but what if you don't want everybody too see something like an admin panel or maybe a special button. Well this tutorial helps you … -
Replied To a Post in Password protecting a site
Awesome, its really cool. -
Replied To a Post in how to create album in wordpress
@hrushi9, if you want a simple album which onclick opens a page which contains all the photos in it, then you can create a new page from your admin panel. … -
Began Watching Hi i am aditya shah
Hi i am aditya shah. I am noob in programming as i am network technician. So i need help with programming -
Replied To a Post in Hi i am aditya shah
Welcome, to the coolest place to interact with seasoned programmers. Daniweb. -
Began Watching how to create album in wordpress
How to create simple photo Album in wordpress **Photo Albums Requirements** `albums.php` to listout Albums `gallery.php` to listout images inside selected album 1. Set Album cover 2. hover effects for … -
Replied To a Post in how to create album in wordpress
Hmm, you are not asking for help though, but I think there are more than enough wordpress plugins to solve your photo album problem. You check [WordPress Photo Gallery Plugins](https://wordpress.org/plugins/photo-gallery/) -
Began Watching how to insert string into mysql contains double backslash
$str="james//bond"; $str= mysqli_real_escape_string($con,$str); //insert query after successful insert in database it value shows as "james/bond" how I can insert exact string -
Replied To a Post in how to insert string into mysql contains double backslash
Provided that your insert query is "INSERT INTO `users` (`username`) VALUES ({$str})" Make this just a literal by putting the variable `$str` into single quotation marks. So use "INSERT INTO … -
Began Watching "What do you enjoy/like about programming?
Do you enjoy programming? If yes, why? Is it your passion? maybe on the salary? and etc. or you just simply enjoy it I wanna hear it from you guys, … -
Replied To a Post in "What do you enjoy/like about programming?
Its my passion. I love to program for hours and burn candles at night for nothing but just pleasure. I love programming. -
Created Hello I'm The Tech-Emiretus
Hi, my name is Appoh Gideon an eighteen year old coder, mastering in HTML5, CSS3, SASS, JS, AJAX, PHP and MySQL. I didn't realise this earlier but I needed to … -
Began Watching Hello I'm The Tech-Emiretus
Hi, my name is Appoh Gideon an eighteen year old coder, mastering in HTML5, CSS3, SASS, JS, AJAX, PHP and MySQL. I didn't realise this earlier but I needed to … -
Gave Reputation to diafol in How to store audio files in mysql database
Probably easier to store the path (or url) of the uploaded audio file. Otherwise store in a blob field. Audio files are typically quite large, so storing them directly in … -
Gave Reputation to tobyITguy in Simple Directory wordpress
what problem does it give?? show the error -
Began Watching How to update database in php
Hello to all, i have my problem using php in updating mysql database, i have codes here. my problem is, when i click update, all data update altogether, i dont … -
Replied To a Post in How to update database in php
First of all, why are you using two database connection layers in one script; mysql and mysqli. Please, I encorage you to use mysqli since mysql is deprecated. Also I … -
Began Watching Autofill textbox values from mysql query result onChange of dropdown?
Hello, I hope that I can get an answer for this question. I have a MYSQL table for charges which contains the following fields: ChargesID, ChargesTitle, OfficialFees and ProfessionalFees. What … -
Replied To a Post in Autofill textbox values from mysql query result onChange of dropdown?
Yh I agree with todyITguy, learning it will be of great help but if you are in need seriously you can use these ajax codes; <script type="text/javascript"> function load () … -
Began Watching someone explain prepared statements and why this doesnt work
I cant seem to understand the issue with this statement, admittedly i have not written this code myself but have found it and modified it to work with what im … -
Replied To a Post in someone explain prepared statements and why this doesnt work
To clarify things when you were encrypting the password during registration, I hope you stored the salt which was added to the password during the encryption in the database. -
Replied To a Post in Data cannot Updated on MySql
Yh, but you must use ajax. Here you setup a new php file which will process the form and then ajax will make the asynchronous / background work for you. -
Began Watching login not responding
<?php require_once('includes/dbconn.php'); error_reporting (E_ALL ^ E_NOTICE); session_start(); $userid = $_SESSION['userid']; $username = $_SESSION['username']; ?> <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Home</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> … -
Replied To a Post in login not responding
yh, and assigning all these html to one variable is a really bad practise -
Began Watching Data cannot Updated on MySql
Hello, please help me sold this issue. It can read the content on the MySql table but when I change the value on the input, then click on Submit, nothing … -
Replied To a Post in Data cannot Updated on MySql
Paul-lucas, I don't know which framework or cms you are using, but I think the get results method only selects information from the database. Reason Updating the database only affects … -
Began Watching dates
please help me i want to months name between two dates. -
Replied To a Post in dates
Yh, your php script that you want to get the months. -
Began Watching problem with mysqli
I have a problem with mysqli syntax. I really can't see what the problem is in this code. I dont know much about it. When i use it on a … -
Replied To a Post in problem with mysqli
I don't get what you are trying to express. Your first script has no relation to the second one. Can you express yourself vividly? -
Created Can Xampp Be Used For An Intranet Production Server
Hello everyone, I have been using xampp for my web app developments for quite a while now. Usually after the app development is done, I upload my files to paid … -
Began Watching Can Xampp Be Used For An Intranet Production Server
Hello everyone, I have been using xampp for my web app developments for quite a while now. Usually after the app development is done, I upload my files to paid … -
Began Watching ul / li menu made from database.. How to make one stay selected
Hello Guys.... Im a first year student in web coding. Im making my exam project right now and i really need you guys help for this simple thing :D. In … -
Replied To a Post in ul / li menu made from database.. How to make one stay selected
Provided your menus open new php files or pages. You can use conditional statements and a class in css to produce te editing. So if for example Home opens index.php … -
Began Watching How would I go about building a small basic music search engine using php a
I was wondering if anyone could tell me how I would approach building a music search engine using php and mysql. I have a design for my Music search engine …
The End.