11,567 Posted Topics
Re: Are you using any Chrome plugins or extensions? Try clearing out your browser cache and cookies in Chrome. What happens if you use Chrome's Incognito mode? (File -> New Incognito Window) | |
Re: I think I could have a sex change, and grow out a full beard, quicker than I could learn how to convincingly photoshop a photo of myself. | |
Re: I disagree, actually. I think that digital marketing courses are a waste of money. Read forums. Read blogs. Learn digital marketing on your own. And then get official [Google Certifications](https://skillshop.exceedlms.com/student/catalog/browse). (Yes, Google outsources its certifications to a company called Intellum.) | |
Re: Here's a little bit [about DaniWeb](https://www.daniweb.com/welcome/about). | |
Re: Here are the categories that LinkedIn uses per their API. (Ignore how they are formatted, that was for my personal use case.) $php_categories = array( array('category' => 'corp','industry' => 'Accounting'), array('category' => 'fin','industry' => 'Accounting'), array('category' => 'man','industry' => 'Airlines/Aviation'), array('category' => 'tech','industry' => 'Airlines/Aviation'), array('category' => 'tran','industry' => 'Airlines/Aviation'), … | |
Re: In what format is the closing_date stored in MySQL? Is it stored as a timestamp field? A date field? You might not be able to do a PHP comparison like that depending on the format that MySQL stores the field as. | |
Re: Show Google that you’re back in action! Right now, Google thinks your company is most likely out of business. Prove to them that isn’t the case by showing how “active” your website is. Link to it from your Facebook, Twitter, or other social media accounts. Post about it on social … | |
Re: I would argue that SEO can still be more effective than social media in terms of digital marketing. It depends on your product, I suppose. There’s a right fit for each audience and niche. | |
Re: I'm perfectly content with Google Analytics, understanding that the tradeoff to using Google Analytics is you are essentially sharing all data it collects about your users with Google, for them to potentially use for advertising targeting, etc. | |
Re: Hello Tahir! Welcome to DaniWeb. What do you mean by full-stack marketing? Of course I know all about full stack web development and how that envelops all aspects of both backend and frontend, but I've never heard the term applied to marketing before. Does that mean that you do both … | |
Re: You are setting the value of $page to $backward, and *then* decrementing $page. That's why you will notice that *after* executing: echo 'backward ' . $backward = $page--; The value of $backward is 10, and the value of $page is 9. If what you are trying to do is decrement … | |
Re: I know about SEO deeply. I have 25 years of experience. | |
Re: Is this a duplicate of your question over at https://www.daniweb.com/programming/web-development/threads/538477/is-htmlspecialchars-necessary-here? | |
Re: I suspect you can get it from Samsung’s website. Or Amazon. We don’t allow our members here to link to eCommerce sites they are affiliated with, so any such responses will be removed. | |
Re: I’m glad you were able to figure it out on your own. Thank you for following up with what you did to fix it. | |
Re: You can write a loop that looks at each element, one at a time, and sees if it appears as any other element in the array. | |
Re: Hi there and welcome to DaniWeb! What brings you here? | |
Re: Anyone have any interest in 3D 360 degree virtual reality video? It's rather a sore subject. We hired a professional VR videographer to capture our wedding in 10K resolution 3D 360 degrees so we could relive the entire day on the Oculus for years to come. There was a misunderstanding. … | |
Re: For what it's worth, I've heard many good things about Apigee over the years, and haven't heard about any of the others you mentioned. Apigee looks to now be owned by Google. | |
Re: This sounds to me like something that can just be done in Microsoft Access alone. What would be the purpose of VB.net in this case? How do you imagine it to look? It sounds to me you could create a handful of tables in a relational database: students, teachers, subjects, … | |
Re: > Move from index i to index (i+1) I haven't looked at C++ in forever, but if you are at `array[i]` then can you just move to the next one by doing `array[++i]?`? My assumption would be that `++i` would first increment i, and then trieve the array element at … | |
Re: I like how it boasts on the splash page that it doesn't collect "excessive" user data. | |
Re: I'm sorry about deleting and then un-deleting your post. I noticed you wrote the following figure appears, but you didn't post a figure, so I didn't know what you were referring to. Then I saw the exact same question asked [here](https://www.sitepoint.com/community/t/no-version-submission-found-on-apple-app/396061) and assumed that you were a spammer just copying/pasting … | |
Re: I'm not familiar with Payment UI. Is it a specific payment system or are you just generically referring to something such as Braintree or Stripe? It seems like you might want something such as <https://pub.dev/packages/flutter_stripe>? | |
| |
Re: Hi and welcome to DaniWeb! https://www.w3schools.com/ I have found to be a very good resource. However, the way that I weekend web development many, many years ago was by downloading free, open source PHP forum software. As I tried to grow DaniWeb, I slowly wanted to make little adjustments, and … | |
Re: Please help us to help you :) Can you please show us the code you have so far, where you are stuck, what’s confusing you, and how we can help you to successfully complete your homework assignment. Much thanks! | |
When I run `getStats()` on my PHP instance, it results in the following: array ( '10.143.27.235:11211' => array ( '����' => '', 'pid' => 3602, 'uptime' => 49804, 'time' => 1663088274, 'version' => '1.5.22', 'libevent' => '2.1.8-stable', 'pointer_size' => 64, 'rusage_user' => 30.254434, 'rusage_system' => 62.188442000000002, 'max_connections' => 4096, 'curr_connections' … | |
I'm trying to get Memcached persistent connections to work. We currently have a cluster of four Memcached servers each with 2GB of RAM, and four web servers. My code looks like this: public function __construct() { global $config; $this->cache = new Memcached('daniweb'); if ($this->cache->isPristine()) { $this->cache->setOptions(array( Memcached::OPT_NO_BLOCK => true, Memcached::OPT_BUFFER_WRITES … | |
| |
Re: If you want the week number to dynamically change when the end-user changes the Session Date, then you will want to use Javascript, not PHP, to update the week. Can you please show the code you currently have for the javascript updateInput() function? What you would want to do is … | |
Re: I don't use any antivirus software on my macOS. For Windows, just whatever comes with Windows 10, as rproffitt says. | |
Re: Your profile says you’re in Bangladesh and, based on some other profiles of yours around the web, you appear just to be a catfish. I assume you’re posting for the seo backlink, but Google can’t see this forum, so no harm, no foul. As community admin, I would delete this … | |
Re: WordPress is the most popular blogging software on the web today. It’s easy to get started with it infinitely powerful if you grow into a power user over the years. If you plan on blogging, I would recommend WordPress. However, you can install WordPress on any server for free, and … | |
Re: Hi, Per our private chat, can you please give a little more detail in terms of where you are stuck or confused? Our goal is to help you complete the assignment, but also to teach you how to do it yourself, so you won’t need as much assistance next time. | |
According to [this page](https://developers.google.com/search/docs/advanced/experience/signed-exchange), Google requires "as a rule of thumb" that the SXG expiration date is less than 1 day in the future if the content is JS, or otherwise 7 days in the future. My external Javascript files are immutable. Why should they have a 1 day cache … | |
Re: I’m not near my computer right now to double check, but if memory serves, I use UTF-8 for email and never had an issue. It would be recommended to use something like utf8 or utf8mb4 if you have a global audience where the email body can contain non-Latin characters. I … | |
Re: Here's someone else needing help about ten years ago with the same program in C++: https://www.daniweb.com/programming/software-development/threads/270987/multiple-math-function-options You can use what they have as a start, and work through debugging it. The easier way, of course, would be with if statements. They seemed to have used multiple functions. Have you learned … | |
Re: > Parse error: syntax error, unexpected 'if' (T_IF) in C:\xampp\htdocs\merge\registration.php on line 3 To answer 2451-18-737-303 (albeit nearly a year late) You're missing { and } around all of your if statements: <?php include('connect.php') if(isset($_REQUEST['submit'])!=' ') { if($_REQUEST['name']=='' || $_REQUEST[email']=='' || $_REQUEST['password']=='' || $_REQUEST['repassword']=='') { echo "please fill the empty … | |
Re: You mention you're looking for an extension that promotes your products on instagram. Odeskavita mentioned that there are a handful of Instagram extensions for Magento ecommerce sites, but this requires you to be using Magento to power your ecommerce. If that's not the case, you can create an RSS feed … | |
Re: I was able to find [URLDownloadToFile()](https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/ms775123(v=vs.85)) but what is URLDownloadToFileA()? Is that a typo or a function you wrote? | |
Re: We are an English-only forum :) Google Translation: *hello everyone, someone can help me ... I would like to make a form with a button that inserts the data into a db access when clicked, I would need the code for the connection to the db, and the statement for … | |
Re: Hi and welcome to DaniWeb! You’ll find yourself right at home here alongside many other longtime web developers. However, we do ask that you please don’t plug a link to your site, to keep our community spam-free. | |
Re: I don’t know VB at all but why do you have SHAPE { with an opening bracket but no closing } anywhere? |
The End.