• Member Avatar for mattster
    mattster

    Began Watching Date of birth not showing in database

    Index.php <html> <head><title>Registration</title> <script type="text/javascript"> function numbersonly(e,length){ var unicode=e.charCode? e.charCode : e.keyCode var maxlength=length; if (unicode!=8){ //if the key isn't the backspace key (which we should allow) if (unicode<48||unicode>57) //if …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Date of birth not showing in database

    prit is right about the format, because if MySQL has a "date" field, it wants it in `yyyy-mm-dd` and will reject anything else. Also, why on earth are you storing …
  • Member Avatar for mattster
    mattster

    Began Watching mod_rewrite: Strip URL specific parameters

    Hi folks, I have a situation that's most easily explained via example, I think. So here goes. Let's say I have the following URLs: 1. /page.asp?id=123 2. /page.asp?id=123&category=ABC 3. /page.asp?id=123&category=ABC&var3=X&var4=Y …
  • Member Avatar for mattster
    mattster

    Replied To a Post in mod_rewrite: Strip URL specific parameters

    Try this: RewriteCond %{QUERY_STRING} (id=(.+?)&)(category=(.+?)&) [NC] RewriteRule ^page.asp(.*)$ page.asp?%1category=%2 [R=301,last]
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    No problem, but any recognition goes a long way :) Ahh right, fair enough - I thought it was just when updating text. Thats interesting, which versions of IE have …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    I've just tried it :) Like the new features on the install. Still no db prefix, but the setup was very nice. Might be worth mentioning you are going to …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    Yeah I did, the drag and drop thing is excellent, works really well. Doesn't seem to automatically add new pages, though. I have to remove and add all pagesand then …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    Installer works fine, really nice, easy and simple :) Two things about the install: * Apparently you cant have numbers in the database name? You might want to look at …
  • Member Avatar for mattster
    mattster

    Gave Reputation to mike_2000_17 in Is an asthma air purifier good to go to get rid of smoke ?

    And generally speaking, allergies and other breathing discomfort is mostly caused by the larger particles and mold in the air. The pollutants (i.e., "chemicals" as some fools might call them) …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Html page style and zooming

    You have the header div inside the head tag: you can't do this. It will mess up the way your page looks. Take a look [here](http://www.w3schools.com/html/html_intro.asp). `<head>` doesn't mean the …
  • Member Avatar for mattster
    mattster

    Began Watching Hacking Lady Gaga's iPad

    It's the festive season but would you really expect Lady Gaga to give you a free iPad 2? That was the exact message being broadcast from Lady Gaga's Twitter account …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Hacking Lady Gaga's iPad

    *dumbo question moment* So was it something stupid like guessing her passwords to get into only her accounts on both networks? or is there a more complicated way they can …
  • Member Avatar for mattster
    mattster

    Began Watching Delete A Thread

    Hey guys! I really need to remove a thread I made because my code is in there and I think my professor won't like it if he sees it in …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Delete A Thread

    Your link is to the wrong location, **working link [here](https://www.daniweb.com/software-development/c/threads/489642/how-can-i-print-name-of-files-with-the-same-month-of-creation)** Why on earth did you post your code in the first place if you're not allowed? You need to flag …
  • Member Avatar for mattster
    mattster

    Began Watching do mysql create another table when selecting rows?

    do mysql create another table when selecting rows?if this happens it will take up lot more space on hard disk as duplicate entries will be risiding in table formed by …
  • Member Avatar for mattster
    mattster

    Replied To a Post in do mysql create another table when selecting rows?

    No, MySQL does not create new rows unless you tell it to. Either you are using the wrong query to get your data or something is seriously wrong with your …
  • Member Avatar for mattster
    mattster

    Began Watching Html page style and zooming

    Hello im really confuzed in the HTML and CSS language i have maked a footer and some div elements in the body so when i scroll up the footer doesnt …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Html page style and zooming

    This is because you've got your head and body tags in a muddle: <html> <head> Page information goes in the head, like a title, favicon and styles <style type="text/css"> ... …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    I downloaded it and renamed the directory, and ran the program. I got exactly the same error as @diafol, so **after** I thought if it try to set the db …
  • Member Avatar for mattster
    mattster

    Gave Reputation to ddanbe in Printing a polar worksheet

    To refresh my mind I did some exercises about complex numbers. I was constantly drawing axes and arrows. So I decided to print out some worksheets with a program to …
  • Member Avatar for mattster
    mattster

    Began Watching how i hide .html from my url page

    Hi guys, someone please help me with a problem, i search alot to google how to hide my ending of my url page and can't find nothing.. ex: www.url.com/file.html what …
  • Member Avatar for mattster
    mattster

    Replied To a Post in how i hide .html from my url page

    It's personal choice. You can go to `facebook.com/index.php` and to `google.co.uk/imghp`. Both respectable sites that obviously rank very highly on search engines. To be honest, the world would've taken a …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    I've taken a quick look at the github .zip file, and I thought I'd have a play. I never got the one-click install, instead all I got was a database …
  • Member Avatar for mattster
    mattster

    Gave Reputation to JorgeM in form to email

    In addition just to add a few more notes here... This can be accomplished with or without a postback. You can use js/AJAX to send the information back to the …
  • Member Avatar for mattster
    mattster

    Began Watching form to email

    i need code shows how can i send information from html page to an email on submit directly with out opening the email broweser or any external url
  • Member Avatar for mattster
    mattster

    Replied To a Post in form to email

    If you don't want to open the persons email client, the only way is serverside scripting (PHP/ASP) once the form is submitted. In php, you just use the mail function: …
  • Member Avatar for mattster
    mattster

    Began Watching CSS media query for real physial size?

    There is screen A and screen B. Both screen are same physical size in length and width. Just one is 1920x1080 and another size is (I think) 800x640. See, if …
  • Member Avatar for mattster
    mattster

    Replied To a Post in CSS media query for real physial size?

    You can get this information in the javascript [screen object](http://www.w3schools.com/jsref/obj_screen.asp). Then you can apply CSS classes from there.
  • Member Avatar for mattster
    mattster

    Gave Reputation to balu_veer in How to get the textbox values by clicking search buttons

    <html> <head> </head> <body> firstname:<input type="text" name="txtfirstname"/> <input type="submit" name="btnGetfirstname"/><br> loginname:<input type="text" name="txtloginname"/> <input type="submit" name="btnGetloginname"/> <br><input type="submit" name="save" value="saveall"/> </body> </html> this is my html code when i click …
  • Member Avatar for mattster
    mattster

    Began Watching selected option value of a drop down list change data from db

    Hi guys, i need selected option value of a drop down list will refresh index page and change data with row by ID from Database which user choose. It is …
  • Member Avatar for mattster
    mattster

    Replied To a Post in selected option value of a drop down list change data from db

    I am not invincible. I cannot reply to everyone instantly, because I have an extremely busy social life. Sorry that I couldn't respond to this within 24 hours. *Joke over, …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Proud to announce...

    Looks really good I have to say, and I'll follow the development closely. Have you thought yet about the business element yet? I really don't wan't to knock your project …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Magento Cache

    I've cleared the cache folder and set those values to 0 in the db - still the same
  • Member Avatar for mattster
    mattster

    Began Watching what would be the php code for <WHERE> when responding to a search inquiry?

    hello! Being a newbie (70 years young) I an trying to complete this php code so my search-form with a multichoice-checkbox may return a selected response on a webpage from …
  • Member Avatar for mattster
    mattster

    Replied To a Post in what would be the php code for <WHERE> when responding to a search inquiry?

    Well for a start you need to specify the WHERE bit in youur query: $result = mysql_query("SELECT * FROM wp_uvmj_participants_database WHERE zip='abcd123' AND specialty='abc123'", $db); You will also need to …
  • Member Avatar for mattster
    mattster

    Created Magento Cache

    Hi All, I am working with a Magento (v1.8.1) site, which until a week or so ago, was working perfectly. I am using the SM_AMAZ theme, and have no plugins …
  • Member Avatar for mattster
    mattster

    Began Watching Magento Cache

    Hi All, I am working with a Magento (v1.8.1) site, which until a week or so ago, was working perfectly. I am using the SM_AMAZ theme, and have no plugins …
  • Member Avatar for mattster
    mattster

    Began Watching Connect Wordpress and Dreamweaver

    Is there a way to connect wordpress and dreamweaver together, in an easy way? I have been getting frustrated with templates that I use and now i want to completely …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Connect Wordpress and Dreamweaver

    So let me get this streight: You have a wordpress site (using a theme) that is hosted with GoDaddy. You have Dreamweaver on your PC, and you want to edit …
  • Member Avatar for mattster
    mattster

    Began Watching Email Question

    Sup guys. So I have an email question. Basically, we've got around 4 employees in our office we've been managing to get away with gmail accounts and luckily registered when …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Email Question

    Managing your own email server is understandably a nightmare, but have you ever looked at [MS Exchange Server](http://office.microsoft.com/en-gb/exchange/hosted-email-for-business-exchange-online-FX103739072.aspx)? It's about £2.50/user/month+ VAT, so it's much cheaper. They also boast the …
  • Member Avatar for mattster
    mattster

    Began Watching Google Maps for Responsive Layout?

    Hello Guys, i have a one html5 website, i had added google maps on my contact us page, while i checking that on mobile, the map (google map iframe) shows …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Google Maps for Responsive Layout?

    Yup, you need a wrapper and some CSS magic. Try something like this: <style> .google-maps { position: relative; padding-bottom: 75%; // This is the aspect ratio height: 0; overflow: hidden; …
  • Member Avatar for mattster
    mattster

    Gave Reputation to diafol in Need a PHP/HTML coder!

    OK. Jorge you're right. I am a miserable git. @zzmrmartinzz In addition to the free work, if you're interested I have a very beautiful girlfriend, a car I'm hoping to …
  • Member Avatar for mattster
    mattster

    Began Watching Carry Forward

    Any body know how to do balance carry forward in php
  • Member Avatar for mattster
    mattster

    Replied To a Post in Carry Forward

    Code answers require code questions. Simples. Try a bit harder and answer @Broj1. > i know session > but i dont know what it means actually Well you clearly don't …
  • Member Avatar for mattster
    mattster

    Replied To a Post in Drop down menu fails on most mobile devices

    If it works on iPhone 4, it should definitely work on all of the more recent ones... @Siberian - mind posting a screenshot to see what you mean by not …
  • Member Avatar for mattster
    mattster

    Began Watching How if new insert in database show notification in page

    How to make in admin page to see in navigation Badge with number of post. Autors make new post and administrator see like in this image example: ![aebb9fd23d41b5677781d14c3d116dcd](/attachments/small/3/aebb9fd23d41b5677781d14c3d116dcd.jpg "align-left") Thanks!!!
  • Member Avatar for mattster
    mattster

    Replied To a Post in How if new insert in database show notification in page

    I've had a little go, based on what's been said already: http://jsfiddle.net/2nphygu1/ It's a really basic CSS(3) example, and hasn't got any links or anything attached. Hopefully it's easy to …
  • Member Avatar for mattster
    mattster

    Began Watching Drop down menu fails on most mobile devices

    Hi, I was informed the only way to get [this](http://cssdeck.com/labs/navigation-dropdown-with-flip-effect) drop down to work on Andriod, WP & to a larger extent iPhone is though JS, I was hoping someone …

The End.