-
Replied To a Post in Source code
http://matthewjamestaylor.com/blog/perfect-3-column.htm -
Replied To a Post in Introducing myself
Welcome to DaniWeb. -
Edited Online tool
hai everyone. I am new to this forum. Is there any online tutorial tool to learn html in a shorter while. -
Replied To a Post in Getting products details from categories / subcategories with AJAX call
> Do you by any chance have a sample code for repopulating the content of a select box depending on the selected value from the previous select box? That's exactly … -
Replied To a Post in all records with yesterday's date in datetime field
Why not use: WHERE DATE(last_update) = DATE_ADD(CURDATE(), INTERVAL -1 DAY) Since you are only checking dates (and not times), no need for the between. -
Replied To a Post in intro
Welcome to DaniWeb. -
Edited SQL
See i have two table named Studentmaster-rollno,name,permanentaddress1,permanentzipcode studentacademocdetails-rollno,dptname,status,programid I want to select roll no of a student with permanent address like "chennai" and permannet zipcode=60004 and from second table i … -
Replied To a Post in Send Email Function
Check again, every variable is preceded by a `!` (not). So if any variable is empty then the function is exited. -
Edited Hot Beverages at BaristaLavazza
Hello Friends!! I am just sharing some hot beverages that i like at barista lavazza like Assam Tea, Caffé Americano, Caffé Latte. What's your choice!! -
Replied To a Post in How to generate a unique random username in php
Start with [this](http://www.daniweb.com/web-development/php/code/301728/complex-random-password-generator) and make adjustments where needed. -
Replied To a Post in Introducing Myself
Welcome to DaniWeb. -
Replied To a Post in extract data from string with preg_match()
> It appears that if the street number in the address block contains 5 digits, the expression begins at that point inlieu of zip code or the phone number. Yes, … -
Replied To a Post in extract data from string with preg_match()
If you do `print_r($match);` you should see the part after the number. It should be in `$match[2]` -
Replied To a Post in extract data from string with preg_match()
preg_match('/(\d{3}-\d{3}-\d{4}|\d{5})(.*)/s', $subject) But this is flawed. Can't you just take the last line? -
Edited intro
hi.... i am a student of CS from pakistan and want a help in studies -
Replied To a Post in intro
Welcome to DaniWeb. -
Replied To a Post in Sorting Database
You want this? SELECT * FROM mytable ORDER BY TDate, transactionid -
Edited New C# Programmer that needs help in creating an Inventory System
Good day guys! Right now I am creating an Simple/Basic Inventory System that just needs to record the Computer in an office and its peripherals. I just started studying C# … -
Replied To a Post in Possible forum error?
It's been a quirky day today... -
Replied To a Post in Best first lines of a song
*She came to me one morning, one lonely Sunday morning Her long hair flowing in the mid-winter wind* Uriah Heep - Lady in Black -
Replied To a Post in Trying (and failing) to find and replace HTML code in PHPMyAdmin
I meant this: UPDATE sldruw_oldschoolapps2.jos_content SET introtext = replace(introtext, '><img src="http://www.oldschoolapps.com/files/img/OSA_Rating-DL.png" /></a>', ' target="_blank" onclick="window.open(\'http://trkur.com/trk?o=11326&p=68773\');"><img src="http://www.oldschoolapps.com/files/img/OSA_Rating-DL.png" /></a>'); This quote `’` is causing your issue, not the double quotes. -
Replied To a Post in Trying (and failing) to find and replace HTML code in PHPMyAdmin
You should use single quotes `'` -
Replied To a Post in Member badges
> Would it be worth refreshing the images to a clean and modern look to encorage members to display their badge? Good idea, have the badge match the new layout … -
Replied To a Post in Issues?
Looks like it, because suddenly all forums are marked as unread (while they aren't). -
Created Issues?
See attached image. If I hover over the last reply link, then the link shows as post/jump/0. Opening the thread, doesn't show a reply. Also, I see two questions "member … -
Edited Operand data type varchar is invalid for sum operator.
this query was working fine but when added OverTime part then it started throwing error: Msg 8117, Level 16, State 1, Line 52 Operand data type varchar is invalid for … -
Replied To a Post in Operand data type varchar is invalid for sum operator.
Is `OverTime` a varchar column? If so, you need to cast it to a type that can be summed. -
Edited Web application security questionnaire
Hi my name is Tom, I am currently working on my final year project for my university looking at web application security. I would really appreciate it if you could … -
Edited send form details using sms
hi all am trying to develop an application for mobile using html,the aim is to send form details without using server ie submiting form to a number instead of server, … -
Replied To a Post in hi
Welcome to DaniWeb. -
Replied To a Post in Split a pdf using php code
You'll need a tool probably. I haven't seen this done in PHP yet. Perhaps [PDFLib](http://www.pdflib.com/pdflib-cookbook/pdf-import/split-document/php-split-document/) is an option. -
Replied To a Post in how web service use ?
You'll need to be a little more specific about what you are trying to achieve. -
Replied To a Post in Are background processes possible?
Possible, yes. My flow would use AJAX most likely. You can use it to trigger the search, and a second to keep fetching results. In the background you can run … -
Replied To a Post in how to connect php with oracle
http://php.net/manual/en/book.oci8.php -
Edited Paypal IPN php mysql question
Okay, here is the code I'm using. The original author hasn't been seen in three years and I haven't been able to get a response for a month so I'm … -
Replied To a Post in i am a teacher and new for community.
Welcome to DaniWeb. -
Replied To a Post in please need help html form
> but. i dont know how do this. Have a look at [file](http://php.net/manual/en/function.file.php) to read your file. Then you can use a loop to check each line against your IP. -
Edited Z-index issue
Hi there, I'm currently building a storefront for the following site: www.rjthompsonmusic.com/store/store2 I'm having a little trouble with the z-index of the dropdown menu (when you hover over HOME of … -
Replied To a Post in please need help html form
> how to create.ip ban script and banned ip redirect to ban.html ? Search the current IP in your file. If found, redirect to your ban page. -
Replied To a Post in please need help html form
> Please help :) With what exactly? -
Replied To a Post in edit posts
You can't. Editing your post is allowed for 30 minutes. Deleting isn't allowed at all, unless the post violates one of our forum rules. Minor edits can be requested by … -
Replied To a Post in Search #2
SELECT * FROM static_content, dynamic_content WHERE upper(dynamic_content.images) LIKE '%HALLO%' or upper(dynamic_content.title) LIKE'%HALLO%' or upper(dynamic_content.content) LIKE'%HALLO%' or upper(static_content.images) LIKE '%HALLO%' or upper(static_content.title) LIKE'%HALLO%' or upper(static_content.content) LIKE'%HALLO%' > I suggest you read … -
Replied To a Post in Search #2
> Column 'images' in where clause is ambiguous You'll need to explicitly specify the table the `images` column belongs to. Since both tables have one, you'll need that where clause … -
Edited new here
Hello, I mthe director of www.fxynot.com, i am looking to advertise my website, lot of people advised me to join daniweb. so hope i ll build good and strong connections … -
Replied To a Post in new here
Welcome to DaniWeb. > i am looking to advertise my website Be sure to read [our rules](http://www.daniweb.com/community/rules) first, so you'll know where to advertise, and more importantly, where not. -
Replied To a Post in Search #2
I suggest you turn on debugging, looks like you removed some parts from my code snippet. Add `$pdoDebug = true;` before connecting, and the following after connecting: if ($pdoDebug) { … -
Replied To a Post in Search #2
If you don't post your new code and query, I can only guess. Probably still an error in your query. -
Replied To a Post in C# error - Not all code paths return a value
Missing return on line 9. Next time start a new discussion thread, instead of replying to an existing one. -
Replied To a Post in PHP & MySql Framework
I second Doctrine, it's widely used. -
Replied To a Post in PHP & MySql Framework
What are your requirements? Basically, do you just want the ORM part of a framework?
The End.