-
Replied To a Post in welcome message
> <!-- Mirrored from themes.shamsoft.net/flaty/extra_login.html by HTTrack Website Copier/3.x [XR&CO'2013], Fri, 27 Dec 2013 07:54:25 GMT --> There's a reason it [costs $17](http://themeforest.net/item/flaty-premium-responsive-admin-template/5247864), someone spent time and effort making it. … -
Began Watching Can't Properly Record Data On csv File
I am trying to collect my form inputs into a csv file and for some reason the csv file records some of the styling and does not display numbers (phone … -
Replied To a Post in Can't Properly Record Data On csv File
You're overriding the `$message` with the HTML in `$v1`. $message = $_POST["message"]; $v1 = " <html> <body> <style> #disclosure {font-size: 8px; color: #333;} h1 {color:#000066;} table {border:1px solid black;} </style> … -
Began Watching passing parameter using url
hi, I am creating an android app that is supposed to retrieve data from a remote database (Mysql) I'd like to pass the parameter to my php file using url … -
Replied To a Post in passing parameter using url
Passing the parameter doesn't work or you don't know how? You should be able to just build a URL with `?`'s and `&`'s in Java as you would normally. URL … -
Began Watching backslash on link element
does the link element have a closing back slash or not i.e is it (1) <link href="css/style.css" rel="stylesheet" type="text/css" media="all" /> or (2) <link href="css/style.css" rel="stylesheet" type="text/css" media="all" > -
Replied To a Post in backslash on link element
*forward slash -
Replied To a Post in Record Options Selected from PHP Form
> @Traveal Sorry but i cant understand what you want to convey , Can you eloberate. Just picked up where I left off yesterday, wasn't a response to something you … -
Replied To a Post in Record Options Selected from PHP Form
> @Traevel, i sent you a link to the page, idk if that will help That is an interesting form layout, nice! I took your updated code, after commenting out … -
Replied To a Post in Record Options Selected from PHP Form
> all my code, aside from my css is pasted above I pasted what you had in a test file, had it post to itself and indeed got some errors. … -
Gave Reputation to almostbob in CSS media query for real physial size?
javascript does not work in some devices, If your code depends on js it may fail thats the teacher's *reason*, pain in the butt is an added bonus (for him) … -
Replied To a Post in Record Options Selected from PHP Form
I ran a quick test, but it seems that id and name can really be the same. If I run this test form (which posts to the same page): <?php … -
Replied To a Post in Record Options Selected from PHP Form
Not printing the variables, weird. Not really sure as to why, but I did however stumble on something about the risk of inserting a mail address [like that](http://securephpwiki.com/index.php/Email_Injection) while looking … -
Replied To a Post in Record Options Selected from PHP Form
They can have the same value, or be different, doesn't matter as long as you use the name for PHP's POST. I read up a bit on it, and according … -
Began Watching HTML5 Javascript pop-up not working in mobile mode.
Hello everyone, I have a page written in HTML5 which atuomatically resizes the page when used on different devices. I also have a menu which goes from a drop down … -
Replied To a Post in HTML5 Javascript pop-up not working in mobile mode.
There's a nifty little [css-only hide/show toggle](http://cssdeck.com/labs/css-only-showhide) snippet which uses a checkbox as a button to change the css of other elements when its state changes. That is if you … -
Began Watching Record Options Selected from PHP Form
I created a form a long time ago (roughly 2 years ago) and I stumbled onto a problem. I know how to record a contact form input when it comes … -
Replied To a Post in Record Options Selected from PHP Form
I think he means `$meeting_type = $_POST["meeting_type"]` as the 5th one that needs a semicolon at the end. And I think you have to use the name attribute instead of … -
Replied To a Post in "Matching" Qualities by search help - PHP or Wordpress
If you have plugins for a wordpress database I would consider using that. I'm not too familiar with wordpress/drupal/joomla but plugins are usually a good idea if your other option … -
Began Watching "Matching" Qualities by search help - PHP or Wordpress
Hey everyone. I am looking to be pointed in the right direction here, tutorial, wordpress plugin..etc Im working on a site for my friend and he wants a "matching" system. … -
Replied To a Post in "Matching" Qualities by search help - PHP or Wordpress
Well you're probably going to need several components worked out. 1. A database where users, "items liked", images etc. are stored in, probably easiest to use [phpMyAdmin](http://www.phpmyadmin.net/home_page/index.php) for testing/developping. 2. … -
Began Watching How to Delete And Update particular row of CSV file in php.
Hello Developers, How to Delete And Update particular row of CSV file in php. <a href="http://screenshot.ru/upload/images/2014/12/26/update625ff.png"></a> Thanks & Regards, Dinesh Thakur -
Replied To a Post in How to Delete And Update particular row of CSV file in php.
But how will anyone know it was updated if you delete it first? In case you meant delete **or** update, then For update: 1. Read the file [line by line … -
Replied To a Post in Calculate the No. of days from Dates NOT in the same row
Well from the query results you posted it seemed like you only needed the **MoveIn** and **MoveOut** date, what you are doing now is inserting the entire row including all … -
Began Watching PHP tables
Dear friends, I developin a webside in php where clients can send their enquiry of material.I have text boxs which clients will fill when click add button this enquiry will … -
Replied To a Post in PHP tables
If you also mean the data should be stored in a database I would suggest following a [CRUD tutorial](http://www.startutorial.com/articles/view/php-crud-tutorial-part-1). The twitter bootstrap part is optional, but comes with a ton … -
Began Watching clearing all combo box at once
in trying to clear all the input boxes on my form.. i have a textbox and combobox.. and i have found the code for clearing all textboxes which is: For … -
Replied To a Post in clearing all combo box at once
Not very familiar with VB, but comboboxes would probably not have a text attribute. From [this](http://www.vb6.us/tutorials/visual-basic-combo-box-tutorial) I'd say try that `clear` again but with a capital C or setting `control.ListIndex` … -
Began Watching Why is array not working in this code?
Why this doesn't work? class Faculty extends Employee { private long[] officeHours; private String rank; public Faculty(long[] hours, String rank) { this.officeHours = hours; this.rank = rank; } public static … -
Replied To a Post in Why is array not working in this code?
Because of something missing in the `//some code here` part. You can do `long[] newToken` or `long newToken[]`to get an uninitialized array. `long[] newToken[]` would give you a multidimensional array. … -
Began Watching Calculate the No. of days from Dates NOT in the same row
I'm trying to calculate the number of days a particular property is vacant. From this query... SELECT Properties.PropId, Tenants.TenantId, Tenants.PropertyID, Tenants.TenantAdress, Tenants.MoveIn, Tenants.MoveOut, Properties.P_GpNo FROM Properties, Tenants WHERE Tenants.PropertyID=Properties.PropId AND … -
Replied To a Post in Calculate the No. of days from Dates NOT in the same row
You can use the [DateTime::diff()](http://php.net/manual/en/datetime.diff.php) function to get a [DateInterval](http://php.net/manual/en/class.dateinterval.php) object which contains the time difference in properties. For example: $datetime1 = new DateTime('2009-10-11'); $datetime2 = new DateTime('2009-10-13'); $interval = … -
Began Watching Comparing 2 Numbers without any sequence
Hey Pals, I was trying very hard to compare 2 numbers when one is not in any sequence. EG: First number: 1233 Second Number: 3321 In this case above, i … -
Replied To a Post in Comparing 2 Numbers without any sequence
That's because [Contains](http://msdn.microsoft.com/en-us/library/dy85x1sa%28v=vs.110%29.aspx) checks for an exact occurrence of the substring. I'm not very familiar with VB.NET so I'm sure there are better solutions out there than the ones I'm … -
Began Watching preference get the old data
I have created a height score class by keep track of time. In this class top 5 score are saved in file using Preferences and than they are display on … -
Replied To a Post in preference get the old data
Could it be that when you're showing the top time from `top5Time` in `render()` that you haven't read the new data from the file yet? A part of the code … -
Began Watching PHP Printing Function Unxepectedly
Hi Guys i am having a very peculiar problem i have written a small code so that it is possible to sign up to the website i am creating with … -
Replied To a Post in PHP Printing Function Unxepectedly
It's working fine here. I can however reproduce that exact print by renaming the php file to html. PHP code can't be inserted into an html file, you'll have to … -
Began Watching Crypto Virus found on my computer!
Whoa Whoa before i say anything or now is I just Reinstalled Windows 8.1 on my PC connected to wifi everythings fine legitimate software all installed everything fine until my … -
Replied To a Post in Crypto Virus found on my computer!
If you just reinstalled and you think there's something on it then reinstall again. If by "something called Crypto" you mean CryptoLocker then the key that was used to encrypt … -
Began Watching Ajax
<? include('connect.php'); ?> <!DOCTYPE html> <html> <head> <script> function showCustomer(str) {alert("dfertvgrevbtr"); var xmlhttp; if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new … -
Replied To a Post in Ajax
The alert is triggering, are you getting a response at all on that ajax? One of the more common problems is making [cross-domain](http://en.wikipedia.org/wiki/Same-origin_policy) ajax calls. Try running your pages from … -
Began Watching slider
How I can make fastest a slider with small linked images like a film tape and they should slide left and right !!!!!!! Pls help fast !!! -
Replied To a Post in slider
If you could slide several at a time, as if it were a single image, I'd suggest using [twitter bootstrap](http://getbootstrap.com/getting-started/) and its [carousel](http://getbootstrap.com/examples/carousel/); never been easier. If you need multiple … -
Began Watching password Availability
Hi, I dont know how to check password availabilty from mysql database, Can anyone tell me about with simple and brief explanation in php. if the password is already in … -
Replied To a Post in password Availability
Passwords [shouldn't](http://php.net/manual/en/faq.passwords.php) be stored in the database at all, nor should it be allowed to check if passwords exist. Usernames are a different story. You could check your db for … -
Began Watching Best free recovery software?
I accidentally deleted some important files. How can I recover them. I am using Tosiba computer. Thanks in advances. -
Replied To a Post in Best free recovery software?
Try a tool that's on a bootable drive/CD, less chance of overwriting the old files since it won't use the hard drive. There are plenty of linux options, but if … -
Began Watching My header column names is getting deleted while processing my textile
I am trying to remove all the columns after the column name "LAYER" My input text files have a more than 10 columns which are tab delimited Designator MAX PN … -
Replied To a Post in My header column names is getting deleted while processing my textile
Since `if (!old.Contains("Designator"))` will skip the header line it will not be included in the new output that you build in ` outputText += String.Join("\t", newTokens) + Environment.NewLine;`. You could …
The End.