-
Replied To a Post in Hi everyone, I'm abdullahahad601
Hi and welcome to DaniWeb!! -
Began Watching Hi everyone, I'm abdullahahad601
I am professional digital marketer special in SEO expert. I am full-time freelancer with overall lots of experience in website SEO.I have complete successfully 50+ project locally. All of the … -
Edited Hi everyone, I'm abdullahahad601
I am professional digital marketer special in SEO expert. I am full-time freelancer with overall lots of experience in website SEO.I have complete successfully 50+ project locally. All of the … -
Replied To a Post in Hi everyone, I'm QMLab
Hi there and welcome to DaniWeb! Thanks so much for joining. Please let me know if you're having a hard time navigating around the site. Most functionality can be accessed … -
Began Watching Hi everyone, I'm QMLab
I'm glad to join this community. My interest is deep learning for audio research. -
Replied To a Post in Onboarding new members
> Unsubscribing from the mailing list now only removes you from things such as our monthly newsletter, recommended topics you might be interested in, and other types of reengagement campaigns. … -
Replied To a Post in How to count live visitors on a page?
I actually just discovered a bug such that we haven't been giving the user *any* alert or warning that their email was unverified. -
Replied To a Post in Onboarding new members
SMS can be pricey and therefore doesn't make sense for a free community. Also, the purpose of email verification is to confirm we have a valid email address to email … -
Replied To a Post in Onboarding new members
Update: I've fixed some permission settings to now send important email notifications (such as that you started a new thread and here's a link to it, or that topics you've … -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
I didn't use anti-virus software on my Windows machine (other than what was built into Windows 10) and I don't use it on my Mac (my primary machine nowadays) either. … -
Created Onboarding new members
In an email conversation I was having with Jim last week, I wrote: > It’s a lot easier to google something than it is to find DaniWeb, sign up, create … -
Began Watching Onboarding new members
In an email conversation I was having with Jim last week, I wrote: > It’s a lot easier to google something than it is to find DaniWeb, sign up, create … -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
I was just thinking, and other software that I go directly to the website to download are things like Zoom, GoToMeeting, TeamViewer, Skype, etc. As mentioned, I can't think of … -
Replied To a Post in Hi everyone, I'm Maul
> It will take me a little bit of time to navigate the forums as the forum is unique. Here's a link to the traditional forums page: https://www.daniweb.com/forums You can … -
Replied To a Post in Pascal Programming;
Oh, never mind. I see what's happened here. iyiolamicheal46 never verified his email address so he isn't receiving any email alerts telling him that we responded to his thread. This … -
Replied To a Post in Pascal Programming;
Hmm, I'm now thinking that we are getting this all wrong. iyiolamicheal46 said an example output is, "Pascal your date of birth is 20/10/2023" ... Is the sample person's *name* … -
Replied To a Post in How to count live visitors on a page?
Have you tried adding `console.log()` debug statements within each conditional to see if the correct branch of the if-else statement is being triggered each time you hit start/stop? -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
> The majority of the Apple users I know don't write code so they can stay in the garden. I don't think it has anything to do with writing code … -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
> Most if not all Apple users stick to the Apple store. That is not my experience at all. I have never installed an app onto my mac from the … -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
A walled garden doesn't mean that there isn't a door. Yes, apps in Apple's app store could potentially have built-in malware. Chrome or Firefox browser extensions could do nefarious things … -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
It depends what you mean by "assist". You could download and install software you don't realize is infected. You could fall victim to a convincing phishing attack. A browser extension … -
Replied To a Post in AntiVirus on today's MacOS and iOS. 2023
I have always been of the opinion that no modern PC operating system that has Internet access is impenetrable. Years ago, nearly all of the talk of virus protection and … -
Began Watching AntiVirus on today's MacOS and iOS. 2023
Am I out of date? For over a decade I never worried about any virus on MacOS/iOS. But https://www.reddit.com/r/techsupport/comments/11di44n/do_i_need_antivirus_for_a_macbook/ is kicking it around like you need such a thing. And … -
Replied To a Post in Hi everyone, I'm Maul
Oh nice. I just googled it. Are you of native ancestry or is it just an interest? Also, what are your initial thoughts on DaniWeb? (I need to ask because … -
Replied To a Post in Pascal Programming;
> If you don't mind my asking, why Pascal? Back when I began pursuing my degree in 2000, universities were starting to slowly make the transition from teaching predominantly Pascal … -
Replied To a Post in Hi everyone, I'm Maul
Oh, and also, I forgot to ask ... what are you studying in school? -
Replied To a Post in Hi everyone, I'm Maul
Hi Maul! Thanks for taking the time to join here, as well as for the delicious cookie. I'm actually browsing DoorDash now, as I type this, because now I have … -
Began Watching Hi everyone, I'm Maul
Hey I'm Aaron. I'm a 31 year old student and forum admin in New Zealand. Nice to meet you all. -
Replied To a Post in Pascal Programming;
Hello, An application like this requires variables to store the name and birthday. It requires you to use the `writeln()` function to output text to prompt the user to enter … -
Began Watching Pascal Programming;
Write a pascal program that accept the name and date of your birth the program should then output your name and date of birth in the format “your name and … -
Replied To a Post in Asp.net, vb.net global variables.
Have you figured out how to do .net sessions with cookies? Sorry, I don’t have .net experience to be able to provide you with actual code examples. If you’re still … -
Replied To a Post in Can You Rank These Valid Mysqli Executions ?
As mentioned, mysqli_stmt_execute() always returns either true or false, so the most elegant way to test is with === true, === false, !== true, or !== false. You could alternatively … -
Replied To a Post in UNSET Session And Destrpy Session Question
Why not just use session_destroy()? -
Began Watching UNSET Session And Destrpy Session Question
Hiya, Is this: ```` function unset_sessions() { //All Sessions on the script .... UNSET($_SESSION['registration_form_display']); UNSET($_SESSION['registration_form_button_clicked']); UNSET($_SESSION['domain']); //Form Input UNSET($_SESSION['domain_email_account']); //Form Input UNSET($_SESSION['domain_email']); //Form Input UNSET($_SESSION['password']); //Form Input UNSET($_SESSION['errors']); Displays errors … -
Replied To a Post in How to count live visitors on a page?
I don’t understand the logic for this at all. This will only decrement the count if you navigate away by clicking on an external link on your webpage and not … -
Replied To a Post in Collision in VB.Net
So that function just returns true or false when called, it doesn't actually *move* anything. Unfortunately I haven't looked at VB code in 25 years, so I can't be of … -
Replied To a Post in Run-time error '-2147467259 (80004005)':
To rproffitt's point, fx.eko, what operating system are you running? Do other VB6 apps run perfectly fine on it? Have you ever experienced any issues like this before? Did Windows … -
Replied To a Post in How to count live visitors on a page?
Sorry, I was typing my above messages from my phone while not near a computer. I am not familiar with using `${id}` in Javascript. I typically only see dollar signs … -
Replied To a Post in How to count live visitors on a page?
Just remove the table index. -
Replied To a Post in Run-time error '-2147467259 (80004005)':
Sorry, I don’t understand what you’re saying? Are you insinuating that the error they are getting is because they are running an older version of Windows? Because they’re also running … -
Replied To a Post in Collision in VB.Net
Where did you attempt to put the code that didn’t work? I’m not seeing it in your full code. Also, the code you are saying isn’t working is just a … -
Began Watching Collision in VB.Net
I'm trying to make the picturebox collide with the others. I tried to do several things but they don't work. I spoke to my teacher and he said I should … -
Replied To a Post in How to make a 4x1 multiplexer program
Instead of having the image on a third-party site, I'm including it here for easier readability.  -
Began Watching How to make a 4x1 multiplexer program
I have this https://imgur.com/a/SMqlcgF multiplexer and I have to make a program to get the truth table. How would I do this? I honeslty am so lost. -
Replied To a Post in Run-time error '-2147467259 (80004005)':
This is outside my wheelhouse but I did a Google search and came across the following article on Microsoft's website about the issue: https://learn.microsoft.com/en-us/office/troubleshoot/excel/run-time-error-2147467259-80004005 The thing is though, that my … -
Began Watching Run-time error '-2147467259 (80004005)':
Hello all I've been using it for years SQL SERVER 2014 Standard and language VB6 programming, but only this time get the following error: Run-time error '-2147467259 (80004005)': [DBNETLIB][ConnectionWrite (WrapperWrite().]General … -
Replied To a Post in Asp.net, vb.net global variables.
I am not familiar with .net, but typically the way this is done across all web development languages is with the use of cookies. A cookie is stored in a … -
Began Watching Asp.net, vb.net global variables.
I am using visual basic dot net, with the asp.net add on. I have created a programme which works great, basically it has a logon, which uses mysql for the … -
Replied To a Post in How To Confirm Sql Row Update Using Prepared Statements?
My library of course uses MySQLi in order to connect and query the database. What I did is rolled my own ORM, which is a technique used to map my … -
Replied To a Post in Can You Rank These Valid Mysqli Executions ?
`if(mysqli_stmt_execute($stmt)===FALSE)` is actually more proper than `if(mysqli_stmt_execute($stmt)==FALSE)`. However, in this particular case, because `mysqli_stmt_execute()` always returns either true or false, and never any other values, technically both will work. You …
The End.