11,557 Posted Topics
Re: Do you use any PHP frameworks? They can cover the bare bones stuff such as dealing with URI routing (clean looking URLs), connecting to the database, and a template engine. Plus they have a lot of other built-in functionality. Pick the one that best suits your needs. | |
Re: you can have 100 ad groups per campaign and 100 campaigns per account | |
Re: > I love action, so it would be Las Vegas or New York City. Don't you live in Vegas? | |
Re: I'm not sure where you are seeing that you are a newbie? | |
Re: I'm just coming up with this off the top of my head (totally untested), but what about something along these lines: SELECT p.name, SUM(b.quantity), SUM(b.total), SUM(b.discount), SUM(b.price) FROM billing AS b LEFT JOIN productmaster AS p ON (p.id = b.pid) GROUP BY b.pid ORDER BY p.name ASC | |
I'm thinking of going down the route where members can actually get paid to answer questions. Here's how I am thinking the concept might work, and you tell me if you think it makes sense: Currently, when you create a new thread, you can donate $1 to have the article … | |
Re: Penguin is related to spammy backlinks, Panda is thin content. In Google Webmaster Tools, do you have any messages saying that there were manual spam actions taken? | |
Re: Yes. However, you probably meant `?page=` and not `?ppge=` | |
Re: Huh?? What are you trying to do? Using a for loop? I'm incredibly confused. Is this a homework assignment? | |
Re: What do you want us to do with your homework assignment?? | |
Re: It's a nice alternative way of accessing the site, particularly if you are in other mailing lists or newsgroups. It's sorta old school ;) | |
Re: We switched to the web-based chat because I wanted a lot more of a seamless integration. In an ideal world, I would have written our chat application on top of IRC or Jabber, but it just wasn't giving me the flexibility I wanted. | |
Re: As suggested, you should use the loud images as a main background, but then put the text in a box with a flat color, and perhaps set it to 80% opacity. | |
Re: You marked this thread solved. Mind sharing what you did to fix it? | |
Re: Yes, it's quite incredibly sad news indeed. :( To think he's been such a huge part of DaniWeb ever since the beginning. | |
This is a program I wrote for my x86 assembly class which is basically the Spade Invaders game in all its glory. It uses Irvine32.inc which came with the textbook. | |
Re: No, in order to do what you are describing, you need to implement a server-side 301 redirect. Adding that bit of HTML code tells Google that both pages are the same and which one is your preferred version, but it doesn't actually go the extra mile and redirect the website … | |
Time once again to ask that question: What could I be doing better? More specifically, I'm looking to answer the following: * Is the UI clear and concise? Is it easy to get around? Is there too much clutter? Are all the features you need/use/want easily accessible? * What features … | |
Re: Just replace the title with 'please delete' and I'll clean that up for ya. | |
Re: DaniWeb uses CodeIgniter 2.x, as do a handful of other people here, so any questions that you may have I'm sure we can help with. I don't know anyone using CodeIgniter 3 as it's still under active development and not production-ready. | |
Re: Are you sure it stopped working at the exact time when you added more permissions? Strangely, I used to use curl for Facebook OAuth, and suddenly that stopped working one day, and I had to switch to using file_get_contents(). | |
Re: Social media, and focusing on having good, clean HTML 5 code that utilizes all the best SEO practices. | |
Re: This question is as old as time itself. And I'm confused, as doesn't Apple use Intel now? | |
Re: The rules you mention are pretty typical for publishing content on the web. They are not unlike our own terms, which we update as well from time to time to reflect changes in our community. It's not done to deceive anyone. It's done to preserve the integrity of the community … | |
Re: Sorry, I'm not following? Are you saying that on the homepage, the new description didn't show up when it was edited? That is simply because the blurbs on the homepage get cached. It is too resource intensive to update them in real time. | |
Re: RewriteRule ^blog/([a-zA-Z0-9]+)$ viewposts.php?id=$1 [L] That will make http://www.example.com/blog/foo redirect to http://www.example.com/viewposts.php?id=foo | |
Re: Career profiles take the location from the IP address. You cannot edit this in your profile. The location changed because you logged onto DaniWeb from a different location (home/work/etc). ![]() | |
Re: When you create the login cookie, simply specify an expire time loooong into the future if the remember me checkbox is ticked. | |
Re: It runs what is in braces (i.e. the second line) with the variable index set to 5, then increments index to 6, runs the second line again, then 7, then 8, and then 9, all the same ... and then when it increments index to 10, we stop, because it … | |
Hi ... so I'm not sure if I have PubSubHubbub set up correctly. I tried setting up subscribing to the feed in Feedly (which supposedly supports the protocol) and now I'm starting a new thread to see if it shows up ASAP. Here goes nothing ... | |
Re: Do you have a website that you are using your FB page to promote? Perhaps put 'Like' widgets on your website to drive traffic and fans to your FB page. | |
Re: No, it must be a browser toolbar / extension / plugin that you are using. | |
Re: Thanks for the news! I'll be following this closely, as DaniWeb is based on CI. | |
Re: Oh my goodness, you're right! I made some changes and it appears it works fine for me but not when I'm not logged in. Hold on I'll look into this ASAP. | |
Re: A blank screen is typically due to a PHP fatal error, such as a parse error. Try putting error_reporting(E_ALL); ini_set('display_errors', '1'); at the top of the PHP document, and it should print out what the error messages are. | |
Is the check: if (!isset($_SERVER['HTTPS']) OR empty($_SERVER['HTTPS'])) { // We are NOT using SSL } a fool-proof way of checking if we are NOT using SSL with PHP/Apache? I understand that IIS sets to 'on/off' but that's irrelevant for me. I am just wondering if I additionally need to check … | |
So I currently am trying to insert a row into a MEMORY table but only if the primary key doesn't already exist. I'm using INSERT IGNORE but I was reading, much to my surprise, that INSERT IGNORE is actually slower than INSERT ... ON DUPLICATE KEY, but that letting the … | |
Re: Are you talking about exact name domains or URLs? For example, are you wanting to redirect www.my-keyword.com and www.another-keyword.com all to www.my-site.com? Or are you wanting to do, as you specify here, creating URLs like dolls-australia.html and dolls-uk.html? I guess I'm just a big fan of putting end-users first, and … |
The End.