11,530 Posted Topics
Re: > As an author of embedded software which has no UI, "Any project" is overreaching Firstly, this is the UI/UX Design forum, so I would say it applies to any project within the context that this post was made in. That being said, UI and UX are very different things. … | |
Re: May I ask what functionality you are looking for? A simple date picker is already a native feature of all modern web browsers. (Albeit they each implement it slightly differently, so the look and feel isn’t uniform across web browsers and platforms.) Simply use `<input type="date">` | |
Re: Hi and welcome! Do you have a question about error handling with php? Are you getting just a blank page? | |
Re: According to a Google search, [Syncfusion](https://www.syncfusion.com/document-processing/pdf-framework/net) seems to be a solution but unfortunately it isn't free. Personally, I use [wkhtmltopdf](https://wkhtmltopdf.org/downloads.html), which is open source, but I am in a Linux environment and use it with PHP. I don't know if there's a way to use it with C#. | |
Re: It is by design that if you receive a popup stating that you have a new message, the conversation does not automatically reappear in your conversation list, if you have previously archived the conversation. However, once you click into view the conversation, it should unarchive itself. | |
Re: I don't understand your question. Which deployment forms? I don't know what you mean by that. | |
Re: We changed the location of avatars and attachments two days ago. I think you might have been looking at a cached page. | |
Re: Back when I was in high school and college, I was really into C++ and I wanted to eventually be a low level software engineer. My college friend [Dan](https://www.daniweb.com/members/12/samaru) was really into web development and was encouraging me to get into web development as well. Specifically, he was really into … | |
Re: We used to have something like this, where you could double click on code and it would put it into a textarea. I’ll figure something out but it might have to wait until after the weekend. | |
Re: The query cache, that rproffitt linked to, used to cache MySQL result sets for situations where an identical query is made and there have been no table writes to any of the tables involved in the query. However, it has since been deprecated. I recommend using something like Memcached to … | |
Re: Hi and welcome to DaniWeb! I’m pretty active in the SEO and digital marketing industry so feel free to start up some discussions. :) | |
Re: Robots meta tags and robots.txt do two completely different things. Which you use depends upon the specific use case for each of your pages. The robots.txt file is used to disallow certain bots (e.g. Googlebot) from accessing parts of your site. You can specify which files or folders should be … | |
Re: Set it on a <div> container inside the body tag. | |
Re: I could have sworn I just answered a very similar question recently, but I now can't find it in my latest posts, so maybe I was dreaming. That being said, I will echo the previous sentiments that it depends on what you need and what you're looking for. They each … | |
By default, PHP's clone keyword just creates a shallow copy of an object, and doesn't work as desired if the object contains properties that are also objects, because it doesn't create real copies of those objects but rather just pointers to the initial version of them. This function creates a … | |
Re: I know I already said hi to you via private message, but hello again and a very warm welcome! | |
Re: Hi and welcome to DaniWeb! I snipped the link to your Telegram group because we don't allow solicitations in our forums. That being said, people are free to reply to you here. However, it does seem a little concerning that the app would make health diagnoses without the patient being … | |
Re: Hi there and welcome to DaniWeb! I noticed when you initially posted your topic got accidentally flagged by our spam bot. Sorry about that. | |
What do you consider "ethical SEO"? What types of general techniques do you use? (No need to be specific or anything here.) The only reason I ask is because everyone has their own definitions of black hat, white hat, ethical, not-so-ethical, etc. :) | |
Re: rproffitt, the trust score he is talking about is 100% related to the browser used. The purpose of the project is to objectively determine how trustworthy an end-user's web browser they are visiting from is. My trust score is A+ when I visit from Chrome on macOS. It was much … | |
A little while ago, I wrote a [tutorial](https://www.daniweb.com/programming/web-development/tutorials/537376/sanitize-php-user-input-strings) about how important it is to sanitize PHP user input strings. Not only is it important to sanitize user input being fed into a database query, but it's also important to sanitize user input being displayed to the end-user to generate valid … | |
Re: > What is the most effective strategy for a website that does not receive enough traffic? Buy ads. > Which tool or software is the best for tracking website traffic? Google Analytics. > What are some effective methods for driving traffic to a website? Buy ads on social networks (Facebook … | |
A PHP array is essentially a stack of elements that can be used to denote a list, represent a collection of variables, etc. You can easily use loops to iterate over each element of an array. As PHP is a loosely typed language, all of the elements of an array … | |
![]() | Re: I can’t really provide a good answer right now because I’m typing on my iPhone from bed. However, you shouldn’t be making assumptions about the state of arrays being passed into a form (or assumptions about what any user input looks like, for that matter). |
Re: It’s not why people add non-appropriate tags, because most members don’t have access to the tag dialog box at all. The reason that happens is because newbies are instead presented with a list of popular tags and must click to select the relevant one(s), and sometimes none of the tags … | |
Re: I'm really sorry, najiawad0, but I had to ban your account because you stated you are under 13. Legally, we cannot allow you to post. | |
Re: Wish I could help but unfortunately I don't know of any. I used to attend Affiliate Summit conferences pretty regularly though. Perhaps there's a forum over at https://www.affiliatesummit.com/ where they can make recommendations? | |
Re: DaniWeb’s forums aren’t really ideal for job recruiting, but for what it’s worth, I’ve had really great personal experience hiring contractors on Upwork. You might also want to look into Toptal, but I’m not sure if that’s only for developers. Good luck with your job search! | |
Re: I use Chrome, although I admit that Firefox has a good number of advanced plugins beyond the well-known Firebug and Webmaster Tools. | |
Re: > Shouldn't you be answering this question rather than asking? SEO isn't the kind of industry that you can pick up a book or read authoritative text on to learn. It's constantly changing, constantly evolving, and the techniques that make up the industry are all just trial and error from … | |
Re: By definition, REST APIs all follow a specific set of constrains as to how it functions. Using a framework that already takes all of the nuances of REST into consideration can significantly shorten your development timeframe, as you won’t have to reinvent the wheel. That being said, I wrote the … | |
Re: Why did you choose to use MongoDB for this use case? Why convert IP strings to hex? How does it make them more searchable that way? Also, why not use existing solutions, as rproffitt mentioned, such as GeoIP? | |
Re: I think the goal should be to create the *illusion* to the gamer that so much is going on simultaneously when, in fact, a lot of things are over-simplified, not truly random, etc. behind the scenes. | |
Re: SEO plays an integral role in every aspect of creating a website. Therefore, I think it’s important to learn it yourself. Similarly, if you grow to a size where you would like to outsource, it’s important to understand the basics so you will know what you are paying for. | |
Re: The SQL query would be something like: SELECT COUNT(*) FROM ip WHERE ip_address = 'x.x.x.x' If it returns 5 or greater, then redirect them. It's hard to know the exact code to use because you haven't told us if you're using a PHP framework, the library you're using to connect … | |
Re: Check out Quantcast, Compete, Alexa, etc. | |
![]() | Re: Maybe there are simply no rows that have the quote_id set to the value of `$qno` simply because your first query literally deleted all the rows that existed in the database where that was the case. ![]() |
Re: What do you mean by find an external link? Find it where? Huh? | |
Re: The *what*? Do you mean common system? Sorry, I'm not sure what you're referring to. Can you please explain in greater detail? | |
Re: Can I mark this question as solved? Or does it still not work? | |
Re: I don't think it's a failed launch at all. You got thousands of registrations, congrats!! Digital media is all about learning and adjusting. Facebook, itself, lived by the mantra to move fast and break things in its early days. Build stuff, get it out there, see what works, see what … | |
To AMP or not to AMP, that is the question. For those who have decided to implement AMP (Wordpress users, I'm looking at you!), have you noticed a difference since doing so? For those of you who have chosen not to, what are your reasons? | |
Re: It depends who you’re targeting (niche audience, geo, etc) and what keywords you’re targeting. I use organic and PPC to target completely different audiences. | |
Re: Pandatech, what are you using right now? I see some third-party Google ads injected in there but it doesn' tlook like AdSense. Also, I see you're using Cloudflare. I'm new to Cloudflare but love it so far. What do you think of RocketLauncher? |
The End.