-
Replied To a Post in Need some dynamic help Please need to submit dynamically to the database
Do you even get to the query part? If you put an `echo` statement before it, is it visible on the page? -
Replied To a Post in Internet Explorer 10 shows white page on page refresh
Without any URL to see it, this is impossible to answer. -
Replied To a Post in Unsave iframe
You need to be a little more specific. What do you have and what are you trying to achieve? -
Replied To a Post in how to do content scrapping or crawling in php
Try this one: http://www.sitepoint.com/using-curl-for-remote-requests/ -
Replied To a Post in Combo box does not record data
If you output `print_r($_POST);` does it show `group_level` ? -
Replied To a Post in uploaded image won't display
`time()` returns the actual time. So the time used in the upload, and the one for the display are different. You need the store the name you use for the … -
Replied To a Post in Can't get recipient list correctly output for PHPMailer BCC email and name
Why don't you push both values (the entire record) to the same array: while () { $recipients[] = $row; } foreach ($recipients as $recipient) { $mail->AddBCC($recipient['email'], $recipient['full_name']); } -
Replied To a Post in Create arrow line with tooltip at run time by using canvas
A shape is drawn directly on the canvas, so I guess the only way is to change your `hover` method. If it's near the line you should show the tooltip, … -
Replied To a Post in Helloooo
Welcome to DaniWeb. -
Replied To a Post in What would you recommend?
http://www.cmsmatrix.org CMS first, then tweak to get what you want. -
Edited How is the best?
windows 7 or windows 8? why? -
Gave Reputation to cereal in Cannot send email from server
**@pritaeas** Whoops, I didn't saw your reply! With Gmail you can use `AUTH LOGIN`, but you need an application-specific password before you can go further, read this: * https://support.google.com/mail/answer/1173270?hl=en Then … -
Replied To a Post in Cannot send email from server
There are a lot of examples in this forum already with PhpMailer and Gmail, do a search. IIRC Gmail uses TLS on port 587. -
Replied To a Post in whats the best way to show results from mysql onto a web page..
> should i make it table less or with table That would be your decision. Either is just fine. > share code Share code for what? Did you look at … -
Edited moving recorc from one table to another
I Need To Move a Record from one Table in a Database To another Table I am using ado in vb 6.0 plz help me! -
Replied To a Post in java program
What do you have so far? -
Replied To a Post in whats the best way to show results from mysql onto a web page..
> some says this can only be done in form of table. It's all up to you, how it would best fit into your design. There is no one guaranteed … -
Replied To a Post in run a php script using mysql event
I recommend you to reconsider your design. Don't go down this path. -
Replied To a Post in what i am doing worng
What do you see when you do: print_r($output); -
Replied To a Post in How area is selected automatically when hovering?
If you inspect the source of that page, you can see it uses an `area` tag. -
Replied To a Post in Completely Blank Page - No Errors
Is the closing quote on line 43 the same in your code, because that could cause an issue. -
Replied To a Post in what i am doing worng
Check what is returned in `$output` -
Replied To a Post in Filter Through Email Headers
Pipe from where? Your files, or from the server? In case of the latter: IMAP is not available on your mail server? -
Replied To a Post in modifying Google Search to make results intentionally inaccurate
Wouldn't it be easier to disallow all search engines and route everything through one you control? If you use a Google Custom Search engine, you can do what you want. -
Replied To a Post in Filter Through Email Headers
`imap_fetchheader` needs an IMAP connection, it can't read from textfiles. -
Replied To a Post in modifying Google Search to make results intentionally inaccurate
> if someone searches Google or any other search engine So you want this to work on all browsers, for all search engines? Are you trying to implement this on … -
Replied To a Post in Filter Through Email Headers
cereal already provided the code you need. -
Replied To a Post in Filter Through Email Headers
http://tools.ietf.org/html/rfc2822#section-3.6 You can, but technically all fields except two are optional. See the 4th paragraph in section 3.6. -
Replied To a Post in Why this variables $_SESSION['username'] and $username are interfering
Is [register globals](http://php.net/manual/en/security.globals.php) turned on perhaps? -
Replied To a Post in Converting markdown to HTML programatically
http://daringfireball.net/projects/markdown/ -
Replied To a Post in jQuery remove vs hide vs detach
> is remove() or hide() even marginally faster than the other? Theoretically hide should be faster. Run a test and find out. -
Replied To a Post in What would you recommend?
> Should I use a pre-existing CMS engine like WordPress and code ontop of that? Should I build the CMS myself from scratch? How much time do you have? -
Edited Eclipse IDE
what is the difference between this packages in Eclipse?Im beginner in java which package should i download. Luna Packages Kepler Packages Juno Packages Indigo Packages Helios Packages Galileo Packages Ganymede … -
Replied To a Post in Separate protocol string for GPS Tracker TK106 & converting it to decimal
MySQL would be my choice. You can insert them as they come in. Servers are made for load. Writing to a text-file can cause you to lose all data if … -
Replied To a Post in DW API
Just the `https` fix and perhaps a new client id and secret, and your done. -
Replied To a Post in procedure and formatting regarding question anyone help me please ♥ ♥ ♥ ;-(
What do you have so far? Don't expect to get ready-made solutions here. -
Replied To a Post in i neeed drag and drop website builder php script
Here's a list of CMSes: http://www.cmsmatrix.org -
Replied To a Post in folder/ worked in local host now i have to folder/index
Yes. I use the following: <Files ~ "^[^\.]+$"> ForceType application/x-httpd-php5 </Files> DirectoryIndex index The first forces ALL files without an extension to be parsed with PHP. The second add `index` … -
Replied To a Post in i neeed drag and drop website builder php script
Please be patient. This is a forum, not chat. People will reply when they have time. BTW, can you be more specific? Are you looking for a CMS? -
Replied To a Post in undefined index
> $_REQUEST['delete']=='yes' && isset($_REQUEST['delete']) These need to be reversed. First check if it's set, then use it, not the other way around. -
Replied To a Post in folder/ worked in local host now i have to folder/index
> im using Ipage, any ideas how i do this? Sorry, I am unfamiliar with ipage. Ask their support (or check their documentation/FAQ/KB). -
Replied To a Post in Chained dropdown codeigniter php mysql
There are several code snippets about this. Browse [here](https://www.daniweb.com/web-development/code/_/31) -
Replied To a Post in Trying to populate drop down list with data from a single database column.
You need to move the `option` inside the while loop, because every option needs that tag. -
Edited Trying to populate drop down list with data from a single database column.
Hey guys, so, I'm creating a control panel for my site where I can edit user's priveledges etc. What I'm trying to do is populate a drop down list of … -
Replied To a Post in Vine videos with HTML
http://blog.vine.co/post/55514921892/embed-vine-posts -
Replied To a Post in folder/ worked in local host now i have to folder/index
Check if the default document is set to `index.php`, either in the htaccess or in your hosting control panel. -
Replied To a Post in offline & Online Synchronization
Is the application database the only one that changes, or do they both change and you want to merge them at a later point in time? The first option could … -
Replied To a Post in Cloud Storage on Web Site
> i am basically doing is making a site that stores all my code online. If you need code versioning or collaboration too, there are ways to setup `git` (for … -
Replied To a Post in [Query] Why isn't this working
> it looks messy so if it is the best way is there a way to format the output? You control how it looks by applying HTML tags and CSS … -
Replied To a Post in What Is Google Panda Algorithm?
Search this forum and you'll find plenty of threads on the subject.
The End.