Posts
 
Reputation
Joined
Last Seen
Ranked #220
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
97% Quality Score
Upvotes Received
146
Posts with Upvotes
131
Upvoting Members
79
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
3
21 Commented Posts
4 Endorsements
Ranked #396
Ranked #145
~409.32K People Reached
Favorite Tags
Member Avatar for vegaseat

I think therefore I am not. Only when the mind is silent, I am. - Unknown

Member Avatar for Reverend Jim
15
13K
Member Avatar for cokerz_written

Where do you set $id? Just print your query (echo $query;) and check if all data is in there.

Member Avatar for Nkem_1
0
264
Member Avatar for akgreen

So is this an informative article or a question? :) If it's the first, thanks! And if it's the second, what's the question? ;)

Member Avatar for Yogesh_22
7
22K
Member Avatar for jonlloydd

You are only passing 3 arguments to your `Get_All_Orderlines_Range()` function, while it needs 4.

Member Avatar for imaaxa
0
2K
Member Avatar for ushajase

For example if you have two computers (that are on the same local area network!), the computer with the name "ComputerA" is running XAMPP, and you want to access this XAMPP server from the computer with the name "ComputerB", then here's what you do: On ComputerB, start up your web …

Member Avatar for Imam_5
3
43K
Member Avatar for Indians

This should work: <script> function randomStringToInput(clicked_element) { var self = $(clicked_element); var random_string = generateRandomString(10); $('input[name=emp]').val(random_string); self.remove(); } function generateRandomString(string_length) { var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; var string = ''; for(var i = 0; i <= string_length; i++) { var rand = Math.round(Math.random() * (characters.length - 1)); var character = characters.substr(rand, …

Member Avatar for Prashant_13
0
6K
Member Avatar for minitauros

Hello there. I'm at a point where I have to set up a continuous integration environment. I have contributed to projects using CI before, but I have never set it up. I roughly know what it is supposed to do, but I could definitely use some help. In my head …

Member Avatar for rproffitt
0
473
Member Avatar for Webville312

Can you please wrap your code in [ code ] tags for our convenience? ;) As for your question: If you store a password encrypted in your database, you will also have to retrieve it encrypted. So for example if you do this: [CODE]mysql_query('INSERT INTO table (username, password) VALUES ("' …

Member Avatar for Dini_1
0
16K
Member Avatar for swilliamrobert

Is it an idea to auto expire a session after x minutes? So for example when a user leaves your website and remains inactive for 10 minutes, after which he returns, your system detects he has been away too long and unsets the session?

Member Avatar for jkon
0
8K
Member Avatar for Acurapassion

If you're paying for hosting and if you don't have access to your own MySQL config files, I think you should contact your hosting company and ask them for help. Most solutions that I find on Google (just copy/paste your error into the Google search bar and you'll find plenty) …

Member Avatar for cereal
0
524
Member Avatar for Sophia_1

For starters, I don't see any code where you are actually displaying something that you fetched from your database.

Member Avatar for Nishant shukla1
0
360
Member Avatar for Fuseteam

It's also the amount of resources that need to be loaded and the complexity of the display. The larger the view that needs to be displayed, the slower it gets. The more content that needs to be downloaded, the slower it gets. At least, for as far as my knowledge …

Member Avatar for fuseteam_1
0
273
Member Avatar for janicemurby

Something like this should be working: <?php $interests = array(); if (!empty($_POST['interests'])) { $interests = $_POST['interests']; } if ($interests) { echo 'Interests:<br>'; foreach ($interests as $i => $interest) { echo 'Interest: ' . $interest . '<br>'; } } else { echo 'No interests submitted.<br>'; } ?> <!DOCTYPE HTML> <html> <head> …

Member Avatar for minitauros
0
264
Member Avatar for Sajjad_1
Member Avatar for Aeonix

On the first line of your file with the error, type `'use strict'` followed by a newline. That should fix it. Some stuff in Javascript is only supported if you use [strict mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode).

Member Avatar for minitauros
0
422
Member Avatar for Jiby_1

You want to know the value of the `style` attributes? Or? You'd have to write a regex PHP parser for that, or maybe you can do some nice stuff parsing it using Javascript?

Member Avatar for diafol
0
114
Member Avatar for Violet_82

You could place your functions inside an anonymous functions like so: (function($) { $('#fancy_jquery_element').doFancyStuff(); })(jQuery);

Member Avatar for Violet_82
0
250
Member Avatar for minitauros

It's cool that you are constantly developing Daniweb, but I feel that it's time to mention some things that I feel are missing since the last overhaul: 1. Can't easily jump to subforums (like "PHP") any more. This isn't really a problem, because I used to just open the "Web …

Member Avatar for Nick Evan
3
558
Member Avatar for shany0786
Member Avatar for V3N0M

Depends on what you want to achieve. You don't need to reinvent the wheel but building something yourself from scratch gives you important insights, insights that you will probably need if you want to be a web developer. As soon as you find out how you can make a wheel …

Member Avatar for diafol
0
316
Member Avatar for UK-1991

I've cleared up some code for you as it seems to be in random order. Try this out and let us know what the debug messages say, as your code does not appear to be wrong at first glance. <input type="file" name="ft_img" style="margin: 0 !important;"><input type="file" name="download" style="margin: 0 !important;"> …

Member Avatar for minitauros
0
198
Member Avatar for shashigowda

> "Have you tried turning it off and on again?" Kidding, but seriously, if this is a new installation, just reinstall and it will probably fix your problems.

Member Avatar for shashigowda
0
584
Member Avatar for esedee
Re: html

Nice one! I think I've learned pretty much all I know about HTML and CSS using that website.

Member Avatar for minitauros
0
138
Member Avatar for SAMMY12345
Member Avatar for tqwhite
-2
257
Member Avatar for davy_yg

If you mean the *name* attribute of a meta tag: that's to indicate what the meta tag is indicating ;).

Member Avatar for minitauros
0
271
Member Avatar for blueguy777

Your code with comment: $myarray = array(); $myarray['numbers']=$_POST['numbers']; foreach($myarray as $num){ $numbers=$num; // You aren't creating an array here. You are giving $numbers the value of the CURRENT number in the loop. PLUS your numbers are stored in $myarray['numbers'], not in $myarray ;). } $unique = array_unique($numbers); $output=implode("<br />",$unique); What …

Member Avatar for blueguy777
0
535
Member Avatar for malatamil

Well first thing that comes to mind: did you check if `src/autoload.php` points at something that exists from the directory you're in? :p And do you have permission to read it?

Member Avatar for malatamil
0
969
Member Avatar for UK-1991

What exactly is not working? Are you getting an error? What are you trying to achieve?

Member Avatar for minitauros
0
171
Member Avatar for gtel

> nor that every non OOP PHP project isn't great (wow, I hope that triple negative phrase makes sense) +1

Member Avatar for diafol
0
142
Member Avatar for Jirkish

You mean a thesis about the web? Or a thesis built with the web? In either case, I think you will need to come up with at least SOME kind of idea about which you could ask us feedback and/or questions to elaborate on, because we cannot invent the wheel …

Member Avatar for Jirkish
0
150