Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 206
Search took 0.51 seconds.
Search: Posts Made By: Dubz
Forum: PHP 05-05-2013, 07:16 AM
Replies: 8
Views: 420
Posted By Dubz
No idea why this post was changed or something...

No idea why this post was changed or something because that's not what I posted. I copied and pasted it straight from my source and only changed the variables.

Anyways, here's the real version:
...
Forum: JavaScript frameworks 04-22-2013, 10:45 PM
Replies: 2
Views: 143
Posted By Dubz
Jquery tooltips issue with datatables

I have a control panel site I'm creating, however there is a slight issue between the tooltips plugin and datatables plugin.

When I load a tooltip to a specific part of something in a datatable,...
Forum: PHP 04-18-2013, 02:26 AM
Replies: 1
Views: 226
Posted By Dubz
You're inserting 4 values into 3 keys, you need...

You're inserting 4 values into 3 keys, you need to either add the missing key or remove the extra value.
Forum: Site reviews 04-16-2013, 02:14 AM
Replies: 6
Views: 526
Posted By Dubz
This just seems like advertising to me. The...

This just seems like advertising to me.

The equation for spam verification isn't the best to prevent bots when it has the equation in the code. If you want to make that harder, I'd suggest getting...
Forum: PHP 04-16-2013, 02:10 AM
Replies: 2
Views: 248
Posted By Dubz
I'm pretty sure this is just spam...

I'm pretty sure this is just spam...
Forum: PHP 04-16-2013, 01:56 AM
Replies: 4
Views: 227
Posted By Dubz
This is how the auto increment is supposed to...

This is how the auto increment is supposed to work. Removing a row from the table won't open that ID back up to use again, even if it was the last one taken. The only ways to reset or change the...
Forum: PHP 04-14-2013, 07:33 PM
Replies: 6
Views: 193
Posted By Dubz
Try something like this: echo "<td>"...

Try something like this:

echo "<td>" ."<input type='checkbox' id='mycheckbox' name='Completed' value='Completed' ".(date("d/m/Y") == $row['Due'] ? "checked='checked' " : ""."/>";


As for the...
Forum: PHP 04-11-2013, 03:43 AM
Replies: 7
Views: 283
Posted By Dubz
If you want this to be done without the page...

If you want this to be done without the page being refreshed, ave a look into jQuery, it handles all of the data sending/receiving and it's processed with jQuery/javascript after. It's definitely...
Forum: PHP 04-11-2013, 03:37 AM
Replies: 3
Views: 135
Posted By Dubz
What is the structure going to be for this? If...

What is the structure going to be for this? If you're only doing two titles then just print the two titles. If you have groups of title then try using arrays, something like this:


$titles =...
Forum: PHP 04-10-2013, 08:35 PM
Replies: 14
Views: 207
Posted By Dubz
Your site won't work properly if you do this, you...

Your site won't work properly if you do this, you would need to make multiple line breaks for the appearance of only a couple. Use the following expression:


$input =...
Forum: PHP 04-10-2013, 12:22 AM
Replies: 14
Views: 207
Posted By Dubz
This has nothing to do with PHP as it is all...

This has nothing to do with PHP as it is all HTML. If you are going to make them paragraphs, why not wrap them with the html paragraph tag <p> and </p>? It would separate them completely instead of...
Forum: PHP 04-09-2013, 10:37 PM
Replies: 16
Views: 374
Posted By Dubz
You would get their input from the forum using...

You would get their input from the forum using $_POST (or $_GET, depending on how you have it set up) and check to make sure it's a valid option (probably is_numeric would work, but it might let...
Forum: PHP 04-09-2013, 08:54 PM
Replies: 5
Views: 264
Posted By Dubz
Try this: $list = array(); ...

Try this:


$list = array();
$list[1]='<iframe width="480" height="270" src="http://www.youtube.com/embed/EflCFJ5F0v4?feature=player_detailpage" frameborder="0" allowfullscreen></iframe>';...
Forum: PHP 04-09-2013, 08:48 PM
Replies: 12
Views: 324
Posted By Dubz
The only time I hear a teacher say that is when...

The only time I hear a teacher say that is when they know what you mean and know they don't know anything about it. You could ask him a question and he could think you mean something else, that...
Forum: PHP 04-09-2013, 08:40 PM
Replies: 16
Views: 374
Posted By Dubz
I'm not familiar with the decimal type column...

I'm not familiar with the decimal type column because I have never used it. I know that for selecting items within a specific size like that you would add a comparison in the query.

For example,...
Forum: PHP 04-09-2013, 03:52 AM
Replies: 5
Views: 264
Posted By Dubz
Well for starters your comparison is incorrect in...

Well for starters your comparison is incorrect in two ways. You are setting $number on both lines, and you are setting them to invalid values. The A1 and A2 should be wrapped in quotes (unless they...
Forum: PHP 04-09-2013, 03:21 AM
Replies: 16
Views: 374
Posted By Dubz
How are these numbered stored exactly in the...

How are these numbered stored exactly in the database? Is it an integer or a string? Also, are there duplicates (or possibly to be duplicates) of the sizes or are there only one of each?
Forum: PHP 04-09-2013, 03:19 AM
Replies: 12
Views: 324
Posted By Dubz
I agree with partially, this is like teaching in...

I agree with partially, this is like teaching in a classroom, but some teachers make mistakes and correct them. You can ask your science teacher questions about science, but he isn't going to know...
Forum: PHP 04-08-2013, 11:53 PM
Replies: 8
Views: 302
Posted By Dubz
Thi sounds like a bigger problem than at first. I...

Thi sounds like a bigger problem than at first. I have stayed logged in this site for weeks and never got logged out unless I clear my history, cookies, cache, etc. to keep it from clogging up and...
Forum: PHP 04-08-2013, 11:48 PM
Replies: 16
Views: 374
Posted By Dubz
Not too sure on what you mean by mm. Either...

Not too sure on what you mean by mm. Either you're explaining wrong or there's something else out there I haven't learned about this yet.

What I showed you would limit based on number of rows, not...
Forum: JavaScript frameworks 04-08-2013, 11:40 PM
Replies: 3
Views: 297
Posted By Dubz
I've been working on a new website but some of...

I've been working on a new website but some of the jQuery library extensions I have are not up to date with the jQuery library so they bugged out here and there. I ended up just reverting back to...
Forum: PHP 04-08-2013, 08:18 PM
Replies: 16
Views: 374
Posted By Dubz
You can easily select the rows from the database...

You can easily select the rows from the database by giving it a starting row number and a limit to how many. You can use the LIMIT command in your select syntax to do this.

Example 1:
This will...
Forum: PHP 04-08-2013, 08:10 PM
Replies: 12
Views: 324
Posted By Dubz
I am sorry master of everything in the world, as...

I am sorry master of everything in the world, as if you've never made a mistake in your life.

As for Googling it, I was busy and have been trying to help out on the forums instead of always asking...
Forum: PHP 04-07-2013, 09:34 PM
Replies: 3
Views: 226
Posted By Dubz
Almost every time you get an unexpected error...

Almost every time you get an unexpected error it's because you haven't finished the line of code before it. Whether you have an extra character or missing one, thats the most common (if not all)...
Forum: PHP 04-07-2013, 09:31 PM
Replies: 8
Views: 420
Posted By Dubz
This will convert all of the text back to the...

This will convert all of the text back to the original characters

<?php
$row['post_content'] = str_replace(
array("&lt;", "&gt;", '&amp;', ''', '&quot;', '&apos;'),
array("<", ">",...
Showing results 1 to 25 of 206

 
Forum Jump

All times are GMT +1. The time now is 01:01 PM.