Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
present
- Page 1
Re: Webdesign and new user experience
Digital Media
Digital Marketing
6 Days Ago
by graceweb
I see your point, but I think Sofina is looking for something that can genuinely enhance her client's experience. AI can be a powerful tool if used thoughtfully. Maybe there are ways to integrate it that align with her vision without overwhelming the design.
Webdesign and new user experience
Digital Media
Digital Marketing
1 Week Ago
by Sofina
… of mine in ecom and I wanted to give her
present
as an addition to my services, so I contacted some…
Re: How we can Choose an Awesome Mobile App Development Company?
Programming
Mobile Development
4 Weeks Ago
by toxsltechusa
> The neat part about today's smart phones and apps is the ability to MUTE NOTIFICATIONS. It's NOT YOUR CHOICE AS THE DEVELOPER TODAY. It's our choice. Sometimes I find a developer or company that gets upset they implemented push notifications which I show them how easy it was to disable on my phone. Finding the appropriate mobile app …
Re: How we can Choose an Awesome Mobile App Development Company?
Programming
Mobile Development
4 Weeks Ago
by Jameswood32
Choosing an awesome mobile app development company requires careful evaluation. Start by assessing their experience and portfolio to ensure they have successfully built apps similar to your project. Check client reviews and ratings on platforms like Clutch or GoodFirms for credibility. Ensure they specialize in the required technology stack (…
Re: How we can Choose an Awesome Mobile App Development Company?
Programming
Mobile Development
3 Weeks Ago
by KamalDeepPareek
While choose any mobile app development company, just check those company reviews
Re: Webdesign and new user experience
Digital Media
Digital Marketing
1 Week Ago
by rproffitt
And here I'm hearing: # > Stop putting AI into everything. Also, you don't want something so why buy what you don't want?
Json response in javascript
Programming
Web Development
2 Months Ago
by Mr.M
… {"content":{"1":{"title":"
Present
","start":"2025,01,29","…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by jkon
…." We often tend to think that browsers read and
present
HTML in the same order we do. I don't… a full idea of the HTML before even starting to
present
anything. Since this is only a theory, I don't…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Salem
…-170 Lists 3 different namespaces where things called 'String' are
present
. using namespace Platform; using namespace default; using namespace System; Or…
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
1 Month Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Biiim
This is what i'm using for AJAX requests - it needs jQuery: var data = []; data.var = 'test'; $.ajax({ type: "POST", data: {data:data}, url: connectProtocol+"://"+currentHost+"/linkToAjaxFile.php", success: function(msg){ responseData = $.parseJSON(msg); …
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Mr.M
I also have to mention that the response will also be a multi-array
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Langflow
Hi! You can decode the JSON response in PHP by using json_decode($response, true); to get an associative array and then get the keys by using array_keys($data) and access values as needed!
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Dani
Sorry, I'm confused. Do you want to decode the JSON in PHP or in Javascript?
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Mr.M
@Dani, I wanted to decode it, basically @BIIM has provided something that helped me out, the problem now is that I've seen that I am facing an issue with how the data is, so now I want the end data to be like this Content{events[{title: myeventtitleFromDatabase, start: myeventstartDateFromdatabase, end: endDateFromDatabase}]} …
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Biiim
Should be events: responseData['content'] And rdata is being made as an array of objects (should be same as the previous, but responseData might be an object of objects) so to use rdata it definitely would be: events: rdata A dream to get sanity would be to do `console.log(responseData);` to see exactly what you've got. And keep…
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Dani
If Biim had provided a working solution, I’ll mark this question as solved.
Present time vs. lunch time
Programming
Software Development
18 Years Ago
by sneekula
I know you can get the
present
time this way: [code]import time now = time.asctime(time.localtime()) print now # Mon Feb 19 10:41:32 2007 [/code]How can I make sure that 'now' does not fall on our lunchtime break, let's say 11:30AM to 12:45PM?
msg for record is not present
Programming
Web Development
14 Years Ago
by snehalj
How check that database record is not
present
in ASP page? i have two combo boxes, selecting both if the record is
present
in the database it is showing, but if the record is not
present
how to check that & how to show msg?
Re: How to check element of list are present in other list?
Programming
Software Development
13 Years Ago
by jgalaz
… the intersection of the lists (all the elements that are
present
in both), the difference between them (elements only…
present
in A, or only
present
in B), etc... basically, all the operations that work…
How to check element of list are present in other list?
Programming
Software Development
17 Years Ago
by R.S.Chourasia
… whether the any of the element of first list is
present
in second list or not. Example: I have a = [4…] I want to check whether any element of a is
present
in be or not. Also without using for loop. Is…
Matching values present in my work DB in my Master DB
Programming
Databases
16 Years Ago
by kavithabhaskar
… database. I have to match each value from 2 fields
present
in my work database to a control db. The values… has to be there no matter what.. when each value
present
in my work DB is matched with the control DB…
Matching values present in my work DB in my Master DB
Programming
Software Development
16 Years Ago
by kavithabhaskar
… database. I have to match each value from 2 fields
present
in my work database to a control db. The values… has to be there no matter what.. when each value
present
in my work DB is matched with the control DB…
How to print text present in a cell
Programming
Software Development
16 Years Ago
by sid.coco
… to understand that how do I print only the information
present
in a cell for e.g. if I want to… able to print the whole details but not the detail
present
in a cell. Please help me....
check if value present in a dictionary.
Programming
Software Development
15 Years Ago
by kadvar
… read that you can check if a particular key is
present
in a dict with the '[B]in[/B]' statement like… need to check if a particular [B]value[/B] is
present
in a dictionary. How do I go about doing that…
Re: msg for record is not present
Programming
Web Development
14 Years Ago
by snehalj
… i want code for displaying msg if record is not
present
in database as per the query. i hope this explanation…
Re: How to check element of list are present in other list?
Programming
Software Development
17 Years Ago
by vegaseat
… "these are the elements of list a that are
present
in list b:" print c else: print "no…
Re: How to print text present in a cell
Programming
Software Development
16 Years Ago
by sid.coco
… retrieves excel sheets and stores them in the database, at
present
I am able to retrieve the excel sheets and show…
Re: If String Present ....
Programming
Web Development
14 Years Ago
by BleepyE
Thanks, everyone. [CODE]<?php $source = file_get_contents("http://bleepyevans.com/"); if(strpos($source,'bleepyevans') !== false) { echo "
Present
"; } else { echo "Not
Present
"; } ?> [/CODE]
Re: What's the best present you ever recieved?
Community Center
Geeks' Lounge
12 Years Ago
by vinnitro
… & sweet voice that said 'happy birthday' was the best
present
I have ever got. It has more value even than… mobile Nokia E5 i got on my birthday as the
present
. I can't forget that moment the smile was on…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC