'AI Is Expected to Transform the Role of Controllers & Analysts ' Community Center by Johannes C. **AI will automize many routine tasks in accounting and the role of financial controllers and analysts will change, but not be replaced – say Manoj Kumar Vandanapu and Sandeep Kumar.** ![agi-talks-02.jpg](https://static.daniweb.com/attachments/4/b1fce5f78b7456fea7043a6d095ca2f0.jpg) In the latest AGI Talks, two renowned finance experts share … Is graphic design useful for UI UX? Digital Media UI / UX Design by Ali_96 Having a degree in graphic design can be beneficial when pursuing a career in UX/UI design since the two fields have many overlapping skills. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner This one is becoming more perplexing. After adding in the PHPMailer coding, page would crash (e.g. blank white screen, HTML file that would display the screen doesn't even start at all, e.g. error in the 1st running PHP file). Adding the semi-colon at end of line 18 (in previously discussed code) did not work and funny thing is, the original coding… Re: Is graphic design useful for UI UX? Digital Media UI / UX Design by Dani I would argue that data analytics is more important. '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. **Alexander De Ridder, AI visionary and CTO of SmythOS, discusses the transformative power of specialized AI systems and the future of human-AI collaboration.** ![header-agi-talks-adr.jpg](https://static.daniweb.com/attachments/4/cf1ab716c18354710010dabb4e9e2a9a.jpg) In the newest interview of our AGI Talks series, **Alexander De Ridder** … 'Prepare for the Earliest Possible AGI Deployment Scenario' Community Center by Johannes C. **Despite the uncertain timeline for Artificial General Intelligence (AGI) becoming a reality, we need to assure responsible and ethical development today – says Jen Rosiere Reynolds.** ![header-agi-talks1.png](https://static.daniweb.com/attachments/4/5595ff2ec36fde155011d21ea73dcd78.png) As part of our new **AGI Talks**, experts from … Middle Aged Needing Career Advice Community Center Geeks' Lounge by BigPaw I'm in my 50's and my IT credentials have lapsed. Pre-cancer I was a consultant in software licensing, but my background is more dominantly hardware and developing. I am self-taught in a couple of old irrelevant-to-today languages, and hold a certification for VB6. Hardware I'm certified A+ and some Toshiba certifications. For software licensing I … Re: How to query database using variable and get all results not just one row Programming Web Development by Chris_103 To retrieve all records associated with the current user, you can use the fetchAll() method instead of fetch(). Here's how you can modify your code: ```php // Query database to retrieve records associated with the user $sql = "SELECT * FROM table_name WHERE variable_name = :variable_name"; $stmt = $conn->prepare($sql); $stmt->… Re: Improve HAVING BY performance Programming Databases by toneewa I added your mentioned alter table index. Took 4.375 secs in MySQL Workbench. It did speed up the results. I'll have to try another method of importing to see if I can improve this. I also ommitted the overhead of converting variables for display output measurements, because they were included in the C++ times. If we were to compare the two, it as … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email address associated … Re: Getting my foot in the door? Community Center by trueframe Networking, training and demonstrating the necessary skills are key to getting started. Attend industry events, network with professionals, and find job opportunities and internship opportunities. Increase your chances of success by showcasing your strengths and demonstrating your passion and commitment to the field. Re: Middle Aged Needing Career Advice Community Center Geeks' Lounge by Dani Perhaps a career as a [software QA engineer](https://in.indeed.com/career-advice/finding-a-job/what-is-qa-engineer) will be interesting to you? Re: Middle Aged Needing Career Advice Community Center Geeks' Lounge by Dani Oh ... and congratulations on your cancer remission. :) PDF Image Table Extractor Web App with Google Gemini Pro and Streamlit Programming Computer Science by usmanmalik57 In my previous article, I explained [how to convert PDF image to CSV using Multimodal Google Gemini Pro](https://www.daniweb.com/programming/computer-science/tutorials/541365/converting-pdf-image-to-csv-using-multimodal-google-gemini-pro). To do so, I wrote a Python script that passes text command to [Google Gemino Pro](https://blog.google/… Devin Might Be Fake, Yet AI's Threat to Jobs Is Real. Community Center by Johannes C. **The creators of an automated software engineer tout their AI's capability to independently tackle complete coding projects, including actual tasks from Upwork. While skepticism is warranted regarding Devin's authenticity, the risk of AI displacing professionals across numerous fields is undeniable.** ![will-code-for-food.jpg](https://static.… Re: How to stop masking with Microsoft Clarity? Hardware and Software Cloud-based Apps by Dani Hmm ... in retrospect, it seems that only form fields are masked. I think MS Clarity might just not be willing to decipher what users type into form fields. Re: How to Code a Load More Button? Digital Media Digital Marketing Search Engine Strategies by MarkMarketer Creating a "Load More" button is a common feature when it comes to handling large data sets. The idea is to load a small amount of data initially and then load more data as the user requests it. This can be done with a combination of HTML, CSS, and JavaScript. This guide will take you through creating a simple "Load More" … Re: Design vs. Coding Programming Software Development by cored0mp @Reverend Jim > That meant there were no junctions that could be disassembled to clean the insides of the pipes. They would have had to cut the pipes after installation and install access points to allow for cleaning. Design people often don't have maintenance as a priority. I agree and if anything I would go further. I don't see coding… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… How do I include variables in query fetch? Programming Web Development by rariti I am trying to greatly shorten code on my pages. Is it possible to include variables in my fetch fields? The below will all exist on same php page. Here is the code I want included in my fetch [code] // variables to include in fetch $abc = stripslashes($row->abc); $def = stripslashes($row->def); $ghi = stripslashes($row->ghi);… Re: Fatal error: Call to undefined function mysqli_list_fields() Programming Web Development by Stefano Mtangoo Did you mean [URL="http://php.net/manual/en/mysqli-result.fetch-fields.php"]mysqli_fetch_fields?[/URL] Re: Fetch data in table cells. Programming Web Development by kvprajapati Fetch/read a record and write it into response buffer. [code] StringBuilder sb=new StringBuilder(); sb.append("<table>"); ... sb.append("<tr><td>" + value1 + "</td></tr>"); ... sb.append("</table>"); .... Label1.Text=sb.ToString(); [/code] Re: fields in java Programming Software Development by JamesCherrill "Fields" is just another name for all the variables and constants belonging to a class (both static and instance variables, but excluding local variables in methods). update the grid vie record Programming Web Development by shiva tiwari **fetch the record from the datsbase through specified query string ** public void get_student() { if(Request.QueryString["empId"]!=null) { int id = Int32.Parse(Request.QueryString["empId"]); sql = new SqlConnection(con); sql.Open();… Re: Im really really stuck .... Programming Web Development by R0bb0b fetch() is not in the manual, can you post that function? Re: Impementing First GUI into Current App Programming Software Development by no1zson Fields must also be initialized!!! duh!! Thank you so much. This has of course pointed out other errors that I need to work on. But you have helped me so much today. I enjoy the interaction. Re: Employee Class Programming Software Development by kvprajapati Fields must be initialized with constructor. [code=cplusplus] int main() { Employee a[3]={Employee("A",1,"A","A"),Employee("B",2,"B","B"),Employee("C",3,"C","C")}; for(int i=0;i<3;i++) { cout << "\n" << a[i].getName… Re: Difference Programming Databases by drjohn fields in a table: id firstName surname dob mobileNum shoesize city eyecolor job roomNum socialSecurityNumber Superkey is any field or combination of fields that can uniquely identify a row So the following are all superkeys id id, dob id, socialSecurityNumber socialSecurityNumber socialSecurityNumber,job socialSecurityNumber, job, dob … Re: Dont display blank cells from mysql select Programming Web Development by benhowdle89 $fields is the user submitted value from the first dropdown asking to select a field name. The query below doesnt work just wanted to double check this was right? Thanks [CODE] $result1 = mysql_query("select distinct * from `parts` WHERE TRIM(".$fields.") <> '' order by ".$fields."") or die(mysql_error()); [/… Re: basic php register and login using flat file with no mySQL Programming Web Development by almostbob fields in the flat file database are currently $name and $email there is room in a flat file .csv(or any other separator, see the php .csv file handling functions at [url=http://www.w3schools.com/php/func_filesystem_fgetcsv.asp] w3cschools [/url] or [url=http://php.net/manual/en/function.fgetcsv.php] php.net [/url]) for a large number of data …