-
Began Watching How to design like this picture
Please give any idea -
Replied To a Post in How to design like this picture
It also uses font awesome for the icons, not images @gentlemedia, so: add `<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">` to the `<head>` and replace `<img src="icon-2.gif" alt="Icon 2" />` with `<h1><i class="fa fa-globe"></i></h1>` … -
Created MySQL Django/Python Setup
Hi All, I've just tried to get going with Django using MySQL, but linking them has been a nasty headache. I am using Python v3.5, Django v1.9 and MySQL 5.6. … -
Began Watching MySQL Django/Python Setup
Hi All, I've just tried to get going with Django using MySQL, but linking them has been a nasty headache. I am using Python v3.5, Django v1.9 and MySQL 5.6. … -
Replied To a Post in Recommend a good alternative to DropBox?
I think that would be of interest to an awful lot of people RJ. -
Replied To a Post in images not properly uploading
@UK-1991 that's fine, no hard feelings from me. No need to not post again aha, we're not that tight here. It was really the way you put your point across … -
Began Watching Recommend a good alternative to DropBox?
Hello Can anyone here recommend a good alternative to DropBox? I run a small team of family members on a personal project. We have been storing data on DropBox. Unfortunately … -
Replied To a Post in Recommend a good alternative to DropBox?
**[Copy](https://www.copy.com/page/home;section:landing)** - I've used it for a little while now and can't fault it. It's an excellent site **15GB of FREE space, plus another 5GB for refferals**! Includes sync, no … -
Began Watching This complex database design help
hello daniwebers... I am really stuck with this design of tables for calendar. Here is the thing...there are employees in a specific company. Each employee accepts customers of the company … -
Replied To a Post in This complex database design help
I think your DB is pretty much there (indiviual opinions may differ), but you know your application best. You can do a PHP/SQL loop like: $date = time(); // today … -
Began Watching Game Inventory Database
Hello Everyone, So I've begun a new project, in an attempt to show off my progress with Javascript. I'm making a little text-based RPG. However, I would like for it … -
Replied To a Post in Game Inventory Database
You users table is fine. (Make sure you're using the right datatypes - varchar(X)/int() - and A_I/PRIMARY_KEY for the ID) Item Desc: ID,NAME,TYPE,ATTACK (again with correct datatypes) Inventory: ID, USER_ID, … -
Gave Reputation to Swati_6 in How To Use Ajax In Cakephp
CakePHP has few immense tools for a PHP developer to turn out JavaScript utilities utilizing merely PHP. The JsHelper hold up the example, jquery UI. The Ajax Helper uses the … -
Began Watching Another Alignment Problem in IE10 and Edge
I have created a footer with links for the major pages of the "upgrade" to my choir's website. It displays perfectly in Chrome and Firefox but the alignment is bad … -
Replied To a Post in Another Alignment Problem in IE10 and Edge
In the nicest possible way, ` ` characters were never going to display correctly. Yes tables are bad practice, but the correct alternative involves a CSS grid system. By all means … -
Began Watching images not properly uploading
Hello, I tried to create a gallery using php admins can upload multiple images all the images are uploading correctly like the image is saving in the database as much … -
Replied To a Post in images not properly uploading
> Any one there to help no one is helping me I am stuck up please some one help me out Since you're not paying me (and everyone else here), … -
Began Watching Closure table
id,ancestor,descendant,lvl,tier_id 1, 11, 11, 0, 0 2, 11, 65, 1, 1 3, 65, 65, 0, 0 5, 11, 66, 1, 2 6, 66, 66, 0, 0 i am using closure … -
Replied To a Post in Closure table
I think what you're doing here is either weird on unclear. So my understanding is, you add a row (ID = 1, TIER = 1, PARENT = 0) then when … -
Gave Reputation to diafol in Get all PHP variable occurrences
Do you want to watch the variable as it passes through your code? You can use XDEBUG or Zend Debug. Here's XDEBUG in action with PHP Storm. I couldn't really … -
Began Watching navigation with media querries
Dear Folks ! I´m having problems with my navigation at different screensizes. At current level the navigation display is nearly the way i want it for the bigger screensizes. But … -
Replied To a Post in navigation with media querries
Remove the ` ` in your HTML, and set your margins in css: @media screen and (max-width: 320px) { .menubar1 > a { box-sizing: border-box; display: block; font-family: arial, helvetica, sans-serif; … -
Began Watching Your Favourite IDE or Editor for PHP
Hi All, Been messing about as usual and managed to trash my long suffering laptop. Luckily all my data is backed up and it was a simple matter of SugarSyncing … -
Replied To a Post in Your Favourite IDE or Editor for PHP
I have been using phpStorm for a little while now, and it has grown on me enough to invest in other JetBrains tools for other projects. The thing I like, … -
Began Watching WordPress Lightbox
Hi Guys. Hope that you are all well, I need some advice if that is ok? I have my first graduate job and they have given me my first commercial … -
Replied To a Post in WordPress Lightbox
**Well if you have a two week deadline and a pressing client you should not have taken on the work without telling your employer you have no idea what you're … -
Gave Reputation to creiglee in Pure CSS Menu - SubMenu Problem
Try this pure [CSS Menu](http://www.corelangs.com/css/table/menu.html) Lee -
Began Watching not inserting mysql query into the database
Hello, I am trying to create a little bit tricky part I thought I would be sucessfull but it didn't happend. Okay so I created a form having multiple field … -
Replied To a Post in not inserting mysql query into the database
Agreed that maybe the `if` block needs sorting, and please PLEASE put a [real escape](http://php.net/manual/en/mysqli.real-escape-string.php) on those variables: (line 5) `$pkgname = mysqli_real_escape_string ( $connection , $_POST["pkgname"] )`. Additional validation … -
Replied To a Post in Can't save and display textbox color after submit button in php and html
But javascript does compute the colour change in the browser? Because you're calling the JS function from two places and it doesn't really make sense. Just before clicking submit, has … -
Began Watching Can't save and display textbox color after submit button in php and html
Hi everyone, am trying to save and display the text color after select change in php and html. After selecting Selfrating1 ie "Good", the textbox T11 suppose to change to … -
Replied To a Post in Can't save and display textbox color after submit button in php and html
Firstly, **`mysql_*` is dead now** - `mysqli_*` should really be used. Also, there's no housekeeping here!! Your query is a lovely advert for SQL injection! `session_start()` should be the very … -
Began Watching how to do dynamic search
here is my code and iam not able to do search in that.only the first search box list the data and when i given second search option both results wont … -
Replied To a Post in how to do dynamic search
Please tell me that you have a `<head>` and that you've just randomly decided to show the end of the page and not the start. Also, please, PLEASE, indent your … -
Began Watching Wordpress themes for Blogger Blogs
I have created a music related blog with wordpress on my localhost. But I have the hosting from google and now I am looking to change wordpress theme to blogger … -
Replied To a Post in Wordpress themes for Blogger Blogs
If it's that good, why sacrifice it for Blogger? Why not invest in some cheap hosting that would allow Wordpress? Personally, I don't find many Blogger templates that exciting, because … -
Began Watching How do I create a spinning ball with logo for website
Hello ! I want to improve my website. Currently I'm using a circular Logo. Now i want to change that logo to a spinning ball with the logo on it. … -
Replied To a Post in How do I create a spinning ball with logo for website
3D in photoshop to create an animated GIF would probably be easiest - I can't think of any other way without using CSS transformations, but to be fair, if your … -
Replied To a Post in encrypted password login
Sorry @diafol you just beat me to it ;) -
Began Watching encrypted password login
Hello, just created a code for login using encrypted password method when user is registering at that time i made a passsword encryption script. But the main problem is that … -
Replied To a Post in encrypted password login
Note: read http://php.net/manual/en/faq.passwords.php#faq.passwords.fasthash sha1 is not safe, do not use it! Have a read through [this](http://php.net/manual/en/book.password.php) and at the very least use the `crypt()` function. Lau has sort of narrowed … -
Gave Reputation to Jean_6 in A Simple HTML Login page using JavaScript
Wow, thank you so much for making this so understandable and simple. -
Began Watching Community Center Chat window
The Community Center Chat window keeps appearing (opening) after I close it which is rather annoying. -
Replied To a Post in Community Center Chat window
Sorry I've just accidently half-mentioned this [here](https://www.daniweb.com/community-center/daniweb-community-feedback/area-51/threads/496094/chat-popup#post2176435). I haven't got any other windows open, and with every new page I have to do the same again to close it. -
Replied To a Post in mysql to mysqli
> you could use prepared statements and bind parameters/values. Apologies, forgot to mention those - point being that some form of housekeeping needed to be done. -
Began Watching Contact Form
Hi, My name is jai and I am trying to code a contact form in php all is going well but I am unable to get data in my email … -
Replied To a Post in Contact Form
> https://www.daniweb.com/web-development/php/threads/435023/read-this-before-posting-a-question How many times that has to be quoted to people around here incapable of common sense. -
Replied To a Post in Divs & css Issues
To adapt to mobiles you need to be using **CSS media queries**, and not changing the ids of elements (the only way you can do that is through JS). You … -
Began Watching Divs & css Issues
I am using a responsive template to make a website. The problem I am having is with the css I need to have different images for a handful of pages. … -
Replied To a Post in Divs & css Issues
So you are having problems overruling css rules to change the background image on the odd few pages? If so, have that code in your style.css file or whatever, and …
The End.