11,530 Posted Topics
For me, I added some DaniWeb features, completely refactored the CSS, and baked for the first time in my life. My fiancé and I even had a bread bake-off. | |
Re: > This thread is a continuation of a conversation that I started here. As Dani correctly pointed out, the discussion belonged in its own thread and should not have taken over the thread in which it started. It wasn't my intention to hijack that thread (and I apologize) but that's … | |
Has anyone started working with PHP 8 yet? Any big backwards compatibility issues? I finally got around to upgrading to php 7! Lol better late than never. | |
With the launch of Oculus Quest 2 (I have the original Quest), I was wondering if anyone had any favorite games they could recommend. I’ve been having a lot of fun with Tetris Effect somewhat recently. However, I’ve been getting a lot of migraines and have tried to avoid VR … | |
Re: Hi Mark. Where in NY are you? What college? I'm from Long Island and went to Hofstra. | |
Re: Where in NY are you from? Born and raised on Long Island, but I moved to California 4 years ago. | |
| |
Re: Some more context would be great. Why do you believe that connecting to a database would solve PHP from “stopping”? Can you please describe what you mean by stopping? Is it going too slow? Is it crashing? Databases are typically meant to give you access to information storage, not to … | |
Re: > Hey. I am an affiliate marketing, would love to know which antidetect are you using? I need your help. Sorry, I'm not familiar with what an antidetect is? What are you trying to accomplish? | |
Re: Our allowable file sizes are pretty generous. Is the image multiple megs in size?? | |
![]() | |
Re: Sounds to me that the software must exist because it’s in use by many different businesses. Call a psychic and call for phone sex are some of the seedier businesses that I’m sure use this type of technology. But it also exists for call for attorney help and that sort … | |
Re: Hi there. Welcome to DaniWeb :) It does, however, seem like you are in India. | |
Re: Hi there and welcome back! I’ve spent the past 20 years just running DaniWeb. Over the past six years or so, I also opened up a tech coworking space in Queens, patented the algorithm that DaniWeb uses to match question askers with potential answerers, and made a dramatic life change … | |
Re: Is that your company? What do you do for them? | |
Re: So sorry for not seeing this question until now. This can be managed yourself, through a database. However, you don't need a subdomain for each traffic source. You can easily pass in a UTM parameter for each traffic source, which has the added benefit of being recognized and stored in … | |
Re: `$_POST['user_ans']` will always be just a single value of the textbox. What does your HTML code look like where there are multiple textboxes where the user types in multiple answers? | |
Re: Video content can be important to getting the details across. For example, many people do their initial research online and then May travel to the local store to see the product in person and physically see what it is they’d be getting before making the purchase. With Covid, seeing items … | |
Re: Something like this: div#textapposite { float: left; width: 50%; } p#apposite { float: right; width: 50%; } | |
Re: Are you saying it gives the error message even if you are not intending to submit the form but rather just load the page to display the form to fill out? What are the contents of the p.php file? | |
Re: You should definitely be able to apply letter spacing to list items. Can you show your CSS and what isn't working and I can try to help? | |
AMP pages are clogging the Valid Pages coverage report, grouped as Indexed, Not Submitted In Sitemap. My AMP pages are linking to the AMP version of the URLs the desktop versions link to. Desktop links to desktop. AMP links to AMP. What this means is that sometimes the AMP version … | |
Re: Yes, you can accomplish this with a combination of Wordpress and Magento. Both are heavily customizable CMS solutions. Magento is specifically for e-commerce. | |
Re: What happens if you comment out the print statement and replace it just with something simple like `print('hello world')`? What if you have two print statements in a row, as so: print('hello') print('world') Do both of them execute? | |
Re: What specifically is failing? Are you seeing any error message? At first glance, you are not escaping variables passed into the MySQL query. Make sure to always do this. Aside from being a huge security concern, this could potentially be causing your queries to error. | |
Re: You need to use a programming language such as javascript. I’m on my phone right now so I can’t really toe out code, but there’s a link to a resource here: https://www.w3schools.com/jsref/jsref_getday.asp This lets your web browser know the day of the week. You then just need to use javascript … | |
Re: Hi, Firstly, I apologize for the confusing message about your account being banned (per your email). This post got caught up in our spam filter. Our automated spam bot falsely detected spam within this post. I've reversed that. Soooo ... about the rest of your questions :) DaniWeb suffered a … | |
Re: > When the function is called I get a blank screen This happens when there's a PHP fatal error. Usually, it's a syntax error, but it can also be when a function call can't be made, parse error, or any number of different things. At the top of the PHP … | |
Re: What is the value of `$l_filename`, and does that server path change depending on the server? If it's a relative path, such as `/home/files/image.gif` then it's possible that same path is relevant on both US and UK servers. | |
Re: The three list items don't all fit together on the same line. The third item is being wrapped around to the next line. If you do `white-space: nowrap;` that should fix the problem. Another idea is to use CSS flex boxes instead of `float: left` but that's a whole different … | |
Re: I'm curious what the output looks like if you were to do `print_r($checkbox);` on line 3 of your PHP file, immediately after setting the value of $checkbox to what's in POST (above your foreach loop). | |
Re: Wordpress is a blogging solution. To add a forum to your website, you will need to use a separate forum script. Examples are Xenforo, vBulletin, and phpBB. Each one has plugins available to create a seamless login for your users between your Wordpress blog platform and the forum platform. | |
Re: Hey there! Welcome to DaniWeb. Glad to hear those emails actually do work. :) Let me know anything I could do to make DaniWeb a better experience for you. | |
Re: It means that one of your MySQL queries failed due to an error message of some sort (improper syntax, etc.). I'm not sure which one because the error message seems to be chopped off. The complete error message should specify the line of the PHP file that failed. | |
Re: So basically what you want is to be able to pass a parameter into index.php. For example, domain.com/index.php?username=dani or domain.com/index.php?username=fred Your PHP code can then use `$username = $_REQUEST['username'];` in order to retrieve the username that is passed into PHP. You'll then want to use .htaccess and mod_rewrite (You guessed … | |
Re: Hi there and welcome to DaniWeb!! | |
Re: So the path you need to take here is: 1. Create an excel file stream 2. Scan for all .txt files in a folder 3. For each .txt file, retrieve its contents and then ... a. Use regex to retrieve the particular text of interest b. Append to the excel … | |
Re: Speed is distance divided by time. You have `distance*time` which is distance multipled by time. For example, if I am traveling at 50 mph, I'm traveling at 50 miles per hour ... thats 50 miles divided by one hour. | |
Re: Use CSS to change the font size. Your CSS currently has your dates and author on the homepage: .entry-meta a { font-size: 14px; } I wonder if that's what Google is thinking is too small? Or maybe you have text somewhere else that's even smaller. You can usually use [Lighthouse](https://developers.google.com/web/tools/lighthouse) … | |
Re: Unfortunately this isn't possible without using a third-party Wordpress plugin. By default, you can select multiple articles with a checkbox to delete them at once, but this isn't really practical if you're looking to delete more than a handful at a time. [Here's a link](https://wordpress.org/plugins/bulk-delete/) to a random Wordpress plugin … |
The End.