-
Replied To a Post in Change background image depending on remaining time
Sorry for the late response... but to keep the data on page reload you'd have to use cookies to store it. -
Replied To a Post in Best Anti virus for my PC
Just to update my previous answer... I don't use Windows as my main OS anymore and I feel much safer. I just run lynis and chkrootkit once a while and … -
Replied To a Post in Help with AJAX and fetching data from HTML dropdown
Change $_POST['s'] to $_GET['s'] or to $_REQUEST['s'] -
Began Watching Help with AJAX and fetching data from HTML dropdown
I'm trying to get the text value from a select dropdown menu that is populated by a database using the following function: <?php function searchintspokenlang() { require ('../../../connect_db.php'); $queryintspoken="SELECT Language … -
Replied To a Post in Change background image depending on remaining time
Hello Tko, when you call `countdown('08/26/2016 09:07:13 PM', callback);`, 'callback' is not defined. I made an fiddle if an example based on your code, except the css. I think it's … -
Began Watching Change background image depending on remaining time
js file : function countdown(endT,callback) { var days,hours,minutes,sec,timer; end = new Date(endT); end = end.getTime(); //Get initial Date in Milliseconds, if (isNaN(end)) { alert('@ countdown.js @ "Invalid Date", valid format- … -
Gave Reputation to Reverend Jim in Memorable Quotations
What if voters decided intelligence and nuanced thinking were more important qualities in a presidential candidate than with whom they’d most like to have a beer? What if the Uhmerican … -
Gave Reputation to Reverend Jim in Memorable Quotations
What if voters decided intelligence and nuanced thinking were more important qualities in a presidential candidate than with whom they’d most like to have a beer? What if the Uhmerican … -
Replied To a Post in Anarchism / Voluntarism
@hericles, thanks for the input, but I disagree in some points... > Humans are incapable of functioning in sufficiently large groups with leadership/authority in place. You meant "without leardership", right? … -
Edited Anarchism / Voluntarism
Hey fellas, Do you think it's possible to live in a organized society that doesn't have a government? And why? I can't remeber when I lost faith in our current … -
Edited Anarchism / Voluntarism
Hey fellas, Do you think it's possible to live in a organized society that doesn't have a government? And why? I can't remeber when I lost faith in our current … -
Created Anarchism / Voluntarism
Hey fellas, Do you think it's possible to live in a organized society that doesn't have a government? And why? I can't remeber when I lost faith in our current … -
Began Watching Anarchism / Voluntarism
Hey fellas, Do you think it's possible to live in a organized society that doesn't have a government? And why? I can't remeber when I lost faith in our current … -
Began Watching Memorable Quotations
Once harm has been done, even a fool understands it. -- Homer -
Replied To a Post in Memorable Quotations
My country is the world and my religion is to do good. - Thomas Plaine -
Began Watching I want to remove space between tags using PHP
So I want to remove space between tags. The tags are seperated by comma. But I don't want to remove space between words just right after the commas. So this: … -
Replied To a Post in I want to remove space between tags using PHP
A simple replace should do it: // removes duple spaces $result = str_replace(" ", " ", $tags); // removes space after comma $result = str_replace(", ", ",", $result); but yes, … -
Replied To a Post in How I Insert Multiple Values Of Checkbox & Textbox Corresponding to it into
But you're not checking for any text, you're just checking the checkbox value that will always be the same. I'd go with something like this: var checkedCount = 0, errMessage … -
Began Watching Multidimensional array for webpage navigation
I'm making a series of webpages, and need to control top level navigation through an external JS file. I can't even think of how to begin to code this. Does … -
Replied To a Post in Multidimensional array for webpage navigation
What do you mean? Are you going to change the navigation menu after the page is loaded? Or do you just want to know what page was loaded to do … -
Began Watching How I Insert Multiple Values Of Checkbox & Textbox Corresponding to it into
here i am having a form like this .i am having multiple checkboxes that are coming from database and i have given a field with every checkbox...now suppose 10 checkboxes … -
Replied To a Post in How I Insert Multiple Values Of Checkbox & Textbox Corresponding to it into
Checkboxes values are only submited if they're checked, and text values are always submited even if blank. So if you check only 5 boxes, the length of `$_POST['checkbox1']` will be … -
Began Watching PHP break string up word by word
Hi guys, I'm working on a project and wanted to know if there is a good / trusted way to break a string apart into words. I want to get … -
Replied To a Post in PHP break string up word by word
You could just make an replace for any special char into an space and then split it with explode, but if you want something a little more elegant, you probably … -
Began Watching Jquery image gallery
Hello, I would like to create image gallery with jquery which could show an image and if I place a cusor on top of it a shadow with a caption … -
Replied To a Post in Jquery image gallery
There's hundreds of jquery gallery plugins out there, just google "jquery image gallery". I don't remeber any one that does exactly what you want, but there's probably a few. Here's … -
Replied To a Post in Searching for good Facebook log in toturial
The only way I'd say it's by doing it! What do you mean only basic stuff? All methods, params and possible results are listed there. And what else do you … -
Began Watching Change the form action after selection of option using Javascript
Hi, I tried to change the form action based on selection option and hoping that my javascript validation function working properly too... I found out one solution and hoping this … -
Replied To a Post in Change the form action after selection of option using Javascript
It's a silly thing... you're reaching for the form with `document.getElementById('myForm')`, but your form doesn't have `id="myForm"`. Just add the id to your form or use `document.forms['myForm']` to get it … -
Began Watching Element will not disappear and reappear until done manually the first time.
What should happen is when i click the log in button, the container for the log in form should become hidden and the sidebar, search bar, tiles and log out … -
Replied To a Post in Element will not disappear and reappear until done manually the first time.
Your button is of 'submit' type, so it means that it'll submit the form (an reload). I didn't check all of your code, but i'd replace your input button for … -
Began Watching Searching for good Facebook log in toturial
I have searched Google and Youtube for Facebook log in toturials but couldn't find something useful. Do you know any good articles or website or even a Youtube toturial that … -
Replied To a Post in Searching for good Facebook log in toturial
How about the facebook developer homepage? It's has the best, and most up to date, documentation you could ever find. https://developers.facebook.com/docs/facebook-login -
Began Watching insert calculated value into database
Hai. i'm beginner in php. Can someone help me to insert the calculated value into database. I'm trying to insert calculated value into database but it doesn't work. This is … -
Replied To a Post in insert calculated value into database
No where in your code exists an INSERT... But let's say you want to insert $tolak.. $no1=$_POST[asal6]; $no2=$_POST[tuntutan6]; $tolak6=$_POST[baki6]; $tolak6=($no1-$no2); $sql = "INSERT INTO table_name(col1, col2, col3) VALUES($no1, $no2, $tolak6);"; … -
Began Watching Data Warehouse
Hi to all ! I need your help. Actually I have enrolled in final year project and chosed Data Warehouse. According to the project scenario I made dimension tables and … -
Replied To a Post in Data Warehouse
Oh boy, it would be much easier with you could post the SQL to create the tables already. It's much easier to analyse an entity relationship on a diagram viewer … -
Began Watching getting (SqlExceptionHelper.java:129) ORA-01747: invalid user.table.column,
when i save my object in hibernate session.save(obj) getting this exception. (SqlExceptionHelper.java:127) SQL Error: 1747, SQLState: 42000 (SqlExceptionHelper.java:129) ORA-01747: invalid user.table.column, table.column, or column specification (AbstractBatchImpl.java:193) HHH000010: On release of … -
Replied To a Post in getting (SqlExceptionHelper.java:129) ORA-01747: invalid user.table.column,
Is your column name a reserved word? If it is, you should enclose it with **"**: http://www.techonthenet.com/oracle/errors/ora01747.php -
Began Watching Creating an email client
Hi there! I hope I'm putting this in the correct section... Recently I though of the idea of "building" something for me. As you may guess for the title, I … -
Replied To a Post in Creating an email client
On a similar approach of @rpoffitt, you could built it with NodeJS and just make an wrapper for each plataform. This way you can code almost all of it in … -
Began Watching pseudo code algorithm
write a pseudocode algorithm to accept a group of numbers and print there product and average the program must end when user enter 999 PLZ HELP ME -
Replied To a Post in pseudo code algorithm
Are you asking us to do your homework? Please have some self-respect and do your own homework! We're here to help, not to do your ****** ****. http://www.learnalgorithms.in/ -
Gave Reputation to BitBlt in Migrating to Linux - Any Tips?
Personally, I cut over to Linux Mint several years ago. When WinXP support sunsetted, I didn't have the cash to get a new machine to run Win7, and I thought … -
Replied To a Post in Migrating to Linux - Any Tips?
@DavidB, unfortunally that's not true for every country. You can't buy a new pc under R$ 1.000,00 in Brazil, and if you want anything with 4gb or more of ram … -
Gave Reputation to jp10558 in Migrating to Linux - Any Tips?
Wow, I'm late to the party - just got informed about this from the Digest. I made the switch from Windows 7 at work and at home over to Scientific … -
Replied To a Post in Brackets SQL Connector Extension
I started up using connection pool to see if it resolve the problem, otherwise i think i'll have to connect and close it after each query. Another way would be … -
Replied To a Post in Brackets SQL Connector Extension
Thanks a lot for the beautiful words bob! But let me ask, are you getting much 'Max connection attempts reachead'? I can't figure this out, normally happens when I let … -
Began Watching Beginning Android development
...I want to start Android app development. Was wondering anyone of you could suggest me the best resources to learn from. I know java but have no idea about Android … -
Replied To a Post in Beginning Android development
Choose your IDE (Eclipse, Android Studio or even Visual Studio now a days), install the stuff, install the sample apps and start playing! Almost every release of an API version …
The End.