Dynamic Properties in PHP 8.2 Programming Web Development by Dani …]` to the top of the class, as so: #[\AllowDynamicProperties] class Images extends CI_Controller { ... } It's a nice and easy MacGyver patch… Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani … hinted above, the built-in Image_lib controller class that manipulates images does, indeed, create dynamic properties. The second, which you say… Re: Important web design and development techniques? Digital Media by Eckert … or Tailwind CSS. For development, follow SEO best practices, optimize images, and write clean, maintainable code. Also, using version control (like… Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani Oh, and an important bit I forgot to mention: PHP's built-in stdClass has the `#[AllowDynamicProperties]` attribute already added. In fact, you can see in the [PHP docs](https://www.php.net/manual/en/class.stdclass.php) that the definition of the stdClass is "a generic empty class with dynamic properties." That means that you can always … Re: Dynamic Properties in PHP 8.2 Programming Web Development by jkon I can't get it , why anyone would want to `$user = new User(); $user->nickname = 'Dani';` if nickname is not a public property of User , or even worse `$user = new stdClass(); $user->nickname = 'Dani';` ? Why ? Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani > This obviously does not make sense to do if you want to create or work with a User object or something of that sort. I realize that in my previous post I incorrectly gave the example of `$user = new stdClass(); $user->nickname = 'Dani';`. My intention was not to say that it was good coding practice to represent a user of the app with an … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Pelorus_1 By loading images and content only when necessary, lazy loading speeds up web portals. Implement JavaScript or frameworks like React with dynamic imports, and use loading="lazy" for images. Re: Anti-Hotlinking Script for WP on Apache (.htaccess) - Linkspam Prevention Programming Web Development by Dani … of hotlink protection is that a website doesn't upload images to *your* site, and then include them in their own… without having to pay for the bandwidth of hosting the images. Just make sure that if you turn on hotlink protection… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by scope_2 Lazy loading enhances web portal speed by loading images, videos, or components only when needed. Add loading="lazy&… Designers, Where Do You Get Your Visuals? Digital Media UI / UX Design by John_165 When creating mobile or app designs, where do you usually get your images from? Is it from Freepik, LottieFiles, Flaticon, Icon8 — or do you create them yourself? Re: Designers, Where Do You Get Your Visuals? Digital Media UI / UX Design by jkon …, there's always a phrase indicating that some secondary content images or videos are AI-generated, usually on the terms/privacy… Re: How to speed up my (WordPress) website? Digital Media Digital Marketing by bijutoha I'm using WP Rocket, and I always serve my images in **AVIF** or **WebP** format. Re: The Impact of User Research on UX Design Digital Media UI / UX Design by john_111 … on everything to find new pages or large version of images. A site I worked on when the original designer had… Re: Custom font on Cloudflare error page Programming Web Development by Dani Hello Dwight, I had already checked out that link, but from what I can gather, Cloudflare does not consider individual resources (such as fonts, images, etc.) as "assets". My understanding is than an asset is the entire HTML file used to generate the page, complete with inline, base64 encoded resources. Re: How to speed up my (WordPress) website? Digital Media Digital Marketing by asadalig … can be super frustrating. What really helped me was compressing images (I switched to WebP and used TinyPNG), setting up a… Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by Advertising13 … and Optimization: Continuously test different elements such as subject lines, images, or send times. Analyze results to optimize future campaigns for… Re: I'm Tired! How to Increase Social Media Followers Digital Media Digital Marketing by Shady33 Here are some tips that first came to my mind: * Collaborate with influencers or complementary brands * Use paid ads to promote your best content or lead magnets * Cross-promote across channels (e.g. promote IG on LinkedIn, or vice versa) * Add social links in your email signature, website, and newsletters * Join relevant groups or … Re: I'm Tired! How to Increase Social Media Followers Digital Media Digital Marketing by Sơn_15 Hi, I think I can help you with this problem. Re: I'm Tired! How to Increase Social Media Followers Digital Media Digital Marketing by MajithaDotcom To grow your followers on Instagram and Facebook, focus on consistency, engaging content, and timing. Use Insights to find when your audience is most active (usually evenings or lunch hours). Mix up content—reels, carousels, memes—and always add value (tips, relatable posts, etc.). Engage with your audience through comments, DMs, and stories, and … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by gediminas.bukauskas.7 Here is a problem: Blazor WEB application working in SSR mode performs partial update of the page after posting. JS initialization does not work in this case. It is difficult to find correct event for performing JS operations. Re: Designers, Where Do You Get Your Visuals? Digital Media UI / UX Design by rproffitt We don't create a lot of them but a company I consult with has turned to AI Art. For protest signs we create our own. Here's one example: ![FlingTheKing2.png](https://static.daniweb.com/attachments/1/8a3b216bd8eca31e645d322c92a516d1.png) Re: Designers, Where Do You Get Your Visuals? Digital Media UI / UX Design by John_165 > We don't create a lot of them but a company I consult with has turned to AI Art. That's really interesting! AI art is such a creative space. If you don't mind me asking, which tools or platforms do you use for generating your AI art? Re: Designers, Where Do You Get Your Visuals? Digital Media UI / UX Design by Dani I woke up today to find that my husband asked ChatGPT to generate an image of my dog. The coloring is correct with the exception of Sadie doesn't have white at the tip of her tail. Images in MFC Programming Software Development by M.Mahroz Images in MFC are created in OnDraw function. We have to … in our OnDraw function. Now if we want to draw images outside that OnDraw then we need to create a pointer… Re: images? Programming Databases by dyingatmidnight … kinda of a whim that had me wanting to add images and I just found I have no idea how to… mean, lets say I store all my images in [url]http://localhost/Catalogue/images/bookCovers[/url] cause that will probably be my… directory. So I throw all the images I want in there. What I need to do is… Re: images Programming Web Development by muralibobby2015 … admin's account deletion script[/QUOTE] i was already deleted images which is in database.i am not talking about admin… side. i am talking about images which is in folder when we are uploadimages that… images are stores in one folder. i want to delete images from that folder. Re: images Programming Web Development by venkat0904 … point clear [QUOTE=muralikalpana;1050145]i was already deleted images which is in database.i am not talking about admin… side. i am talking about images which is in folder when we are uploadimages that… images are stores in one folder. i want to delete images from that folder.[/QUOTE] images? Programming Databases by dyingatmidnight … to a table I have but I've never stored images in an SQL database before and I'm not sure… little cover flow script that needs file paths for the images it uses. Mostly I'm stuck on how to best… do that and then the query needed to return the images path. And really the select query will probably be self… Images Community Center Geeks' Lounge by freesoft_2000 Hi everyone, Does anyone know where i can download free images of say like the images of file open, cut, copy and paste for free in either png or jpg formats? Some links to these downloads would really be helpful. Any help is greatly appreciated Thank You Yours Sincerely Richard West Images Community Center Meta DaniWeb by Dave Sinkula … different. I was searching for something I had posted with images at one time, I don't recall if they were…