473,911 Members | 5,846 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Photo upload problem

9 New Member
I am a noobie so pleas bear with me..

I am trying to link a image to a MYSQL variable.

I have user photos that i would like to link this page. So far I created an image upload and renamed the imaged to the username.jpg. Figured it would be easy to then link but nothing seems to be working.


Here is the total code..

Expand|Select|Wrap|Line Numbers
  1. <?php require_once('../Connections/JMI10.php'); ?><?php require_once('../Connections/JMI10.php'); ?><?php require_once('../Connections/JMI10.php'); ?>
  2. <?php
  3. if (!function_exists("GetSQLValueString")) {
  4. function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
  5. {
  6.   if (PHP_VERSION < 6) {
  7.     $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  8.   }
  9.  
  10.   $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  11.  
  12.   switch ($theType) {
  13.     case "text":
  14.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  15.       break;    
  16.     case "long":
  17.     case "int":
  18.       $theValue = ($theValue != "") ? intval($theValue) : "NULL";
  19.       break;
  20.     case "double":
  21.       $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
  22.       break;
  23.     case "date":
  24.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  25.       break;
  26.     case "defined":
  27.       $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
  28.       break;
  29.   }
  30.   return $theValue;
  31. }
  32. }
  33.  
  34. if (!function_exists("GetSQLValueString")) {
  35. function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
  36. {
  37.   if (PHP_VERSION < 6) {
  38.     $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  39.   }
  40.  
  41.   $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  42.  
  43.   switch ($theType) {
  44.     case "text":
  45.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  46.       break;    
  47.     case "long":
  48.     case "int":
  49.       $theValue = ($theValue != "") ? intval($theValue) : "NULL";
  50.       break;
  51.     case "double":
  52.       $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
  53.       break;
  54.     case "date":
  55.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  56.       break;
  57.     case "defined":
  58.       $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
  59.       break;
  60.   }
  61.   return $theValue;
  62. }
  63. }
  64.  
  65. if (!function_exists("GetSQLValueString")) {
  66. function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
  67. {
  68.   if (PHP_VERSION < 6) {
  69.     $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  70.   }
  71.  
  72.   $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  73.  
  74.   switch ($theType) {
  75.     case "text":
  76.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  77.       break;    
  78.     case "long":
  79.     case "int":
  80.       $theValue = ($theValue != "") ? intval($theValue) : "NULL";
  81.       break;
  82.     case "double":
  83.       $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
  84.       break;
  85.     case "date":
  86.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  87.       break;
  88.     case "defined":
  89.       $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
  90.       break;
  91.   }
  92.   return $theValue;
  93. }
  94. }
  95.  
  96. $editFormAction = $_SERVER['PHP_SELF'];
  97. if (isset($_SERVER['QUERY_STRING'])) {
  98.   $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
  99. }
  100.  
  101. if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "useredit")) {
  102.   $updateSQL = sprintf("UPDATE ``user`` SET username=%s WHERE userid=%s",
  103.                        GetSQLValueString($_POST['username'], "text"),
  104.                        GetSQLValueString($_POST['userid'], "text"));
  105.  
  106.   mysql_select_db($database_JMI10, $JMI10);
  107.   $Result1 = mysql_query($updateSQL, $JMI10) or die(mysql_error());
  108.  
  109.   $updateGoTo = "master.php";
  110.   if (isset($_SERVER['QUERY_STRING'])) {
  111.     $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
  112.     $updateGoTo .= $_SERVER['QUERY_STRING'];
  113.   }
  114.   header(sprintf("Location: %s", $updateGoTo));
  115. }
  116.  
  117. mysql_select_db($database_JMI10, $JMI10);
  118. $query_rsshowuser = "SELECT * FROM `user`";
  119. $rsshowuser = mysql_query($query_rsshowuser, $JMI10) or die(mysql_error());
  120. $row_rsshowuser = mysql_fetch_assoc($rsshowuser);
  121. $totalRows_rsshowuser = mysql_num_rows($rsshowuser);
  122.  
  123. $maxRows_DetailRS1 = 10;
  124. $pageNum_DetailRS1 = 0;
  125. if (isset($_GET['pageNum_DetailRS1'])) {
  126.   $pageNum_DetailRS1 = $_GET['pageNum_DetailRS1'];
  127. }
  128. $startRow_DetailRS1 = $pageNum_DetailRS1 * $maxRows_DetailRS1;
  129.  
  130. $colname_DetailRS1 = "-1";
  131. if (isset($_GET['recordID'])) {
  132.   $colname_DetailRS1 = $_GET['recordID'];
  133. }
  134. mysql_select_db($database_JMI10, $JMI10);
  135. $query_DetailRS1 = sprintf("SELECT * FROM survey1 WHERE userid = %s", GetSQLValueString($colname_DetailRS1, "int"));
  136. $query_limit_DetailRS1 = sprintf("%s LIMIT %d, %d", $query_DetailRS1, $startRow_DetailRS1, $maxRows_DetailRS1);
  137. $DetailRS1 = mysql_query($query_limit_DetailRS1, $JMI10) or die(mysql_error());
  138. $row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
  139.  
  140. if (isset($_GET['totalRows_DetailRS1'])) {
  141.   $totalRows_DetailRS1 = $_GET['totalRows_DetailRS1'];
  142. } else {
  143.   $all_DetailRS1 = mysql_query($query_DetailRS1);
  144.   $totalRows_DetailRS1 = mysql_num_rows($all_DetailRS1);
  145. }
  146. $totalPages_DetailRS1 = ceil($totalRows_DetailRS1/$maxRows_DetailRS1)-1;
  147.  
  148. $maxRows_DetailRS2 = 50;
  149. $pageNum_DetailRS2 = 0;
  150. if (isset($_GET['pageNum_DetailRS2'])) {
  151.   $pageNum_DetailRS2 = $_GET['pageNum_DetailRS2'];
  152. }
  153. $startRow_DetailRS2 = $pageNum_DetailRS2 * $maxRows_DetailRS2;
  154.  
  155. $colname_DetailRS2 = "-1";
  156. if (isset($_GET['recordID'])) {
  157.   $colname_DetailRS2 = $_GET['recordID'];
  158. }
  159. mysql_select_db($database_JMI10, $JMI10);
  160. $query_DetailRS2 = sprintf("SELECT * FROM `user` WHERE userid = %s ORDER BY `state` ASC", GetSQLValueString($colname_DetailRS2, "-1"));
  161. $query_limit_DetailRS2 = sprintf("%s LIMIT %d, %d", $query_DetailRS2, $startRow_DetailRS2, $maxRows_DetailRS2);
  162. $DetailRS2 = mysql_query($query_limit_DetailRS2, $JMI10) or die(mysql_error());
  163. $row_DetailRS2 = mysql_fetch_assoc($DetailRS2);
  164.  
  165. if (isset($_GET['totalRows_DetailRS2'])) {
  166.   $totalRows_DetailRS2 = $_GET['totalRows_DetailRS2'];
  167. } else {
  168.   $all_DetailRS2 = mysql_query($query_DetailRS2);
  169.   $totalRows_DetailRS2 = mysql_num_rows($all_DetailRS2);
  170. }
  171. $totalPages_DetailRS2 = ceil($totalRows_DetailRS2/$maxRows_DetailRS2)-1;
  172. ?>
  173. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  174. <html xmlns="http://www.w3.org/1999/xhtml">
  175. <head>
  176. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  177. <title>Untitled Document</title>
  178. <style type="text/css">
  179. <!--
  180. .kk {
  181.     color: #030303;
  182. }
  183. .style1 {color: #F00; font-weight: bold; }
  184. .ee {
  185.     color: #030303;
  186. }
  187. .ee1 {
  188.     color: #FFF;
  189. }
  190. .dd {color: #F00;
  191. }
  192. .dd {
  193.     font-size: 12px;
  194.     color: #FFF;
  195. }
  196. .ee2 {color: #030303;
  197. }
  198. .hh {
  199.     text-align: left;
  200.     font-weight: bold;
  201. }
  202. .jj {
  203.     color: #FFF;
  204.     text-align: center;
  205.     font-weight: bold;
  206. }
  207. .kk {
  208.     text-align: left;
  209. }
  210. .jj .jj {
  211.     font-weight: bold;
  212. }
  213. .jj {
  214.     font-weight: bold;
  215. }
  216. .jj {
  217.     text-align: left;
  218. }
  219. .ll {
  220.     font-weight: bold;
  221. }
  222. .kk {
  223.     font-weight: bold;
  224.     color: #030303;
  225. }
  226. .oo {
  227.     font-weight: bold;
  228.     font-size: 16px;
  229. }
  230. .hh {
  231.     text-align: left;
  232. }
  233. .ll {
  234.     font-family: Arial, Helvetica, sans-serif;
  235. }
  236. -->
  237. </style>
  238. </head>
  239.  
  240. <body>
  241. <table width="701" border="0">
  242.   <tr>
  243.     <th width="532" valign="top" class="hh" scope="col"><p><span class="style1">Inspector Detail Page</span><span class="kk"></span></p>
  244.       <p><a href="master.php">Inspector List</a> <a href="list.php">Admin Menu</a></p>
  245.     <p class="ll"><?php echo $row_DetailRS2['firstname']; ?> <?php echo $row_DetailRS2['middlename']; ?> <?php echo $row_DetailRS2['lastname']; ?></p>
  246.     <table width="453" height="58" border="1">
  247.       <tr>
  248.         <th width="82" bgcolor="#000080" class="jj" scope="col"><span class="kk" style="color: #FFF">Userid</span></th>
  249.         <th width="144" class="hh" scope="col"><?php echo $row_DetailRS2['userid']; ?></th>
  250.         <th width="76" bgcolor="#000080" class="jj" scope="col">Username </th>
  251.         <th width="163" class="hh" scope="col"><?php echo $row_DetailRS2['username']; ?></th>
  252.       </tr>
  253.       <tr>
  254.         <td bgcolor="#000080" class="jj">Status</td>
  255.         <td class="hh"><?php echo $row_DetailRS2['usertype']; ?></td>
  256.         <td bgcolor="#000080" class="jj">Password</td>
  257.         <td class="hh"><?php echo $row_DetailRS2['password']; ?></td>
  258.       </tr>
  259.     </table></th>
  260.     <th width="153" align="left" valign="middle" scope="col"><img src="http://bytes.com/topic/php/idphoto/nclark.jpg" width="157" height="232" /></th>
  261.   </tr>
  262. </table>
  263. <table border="1" align="left">
  264.   <tr>
  265.     <td width="292" bgcolor="#DBDBDB" class="kk">Address1</td>
  266.     <td width="338"><?php echo $row_DetailRS2['address1']; ?></td>
  267.   </tr>
  268.   <tr>
  269.     <td bgcolor="#DBDBDB" class="kk">Address2</td>
  270.     <td><?php echo $row_DetailRS2['address2']; ?></td>
  271.   </tr>
  272.   <tr>
  273.     <td bgcolor="#DBDBDB" class="kk">City</td>
  274.     <td><?php echo $row_DetailRS2['city']; ?></td>
  275.   </tr>
  276.   <tr>
  277.     <td bgcolor="#DBDBDB" class="kk">County</td>
  278.     <td><?php echo $row_DetailRS2['county']; ?></td>
  279.   </tr>
  280.   <tr>
  281.     <td bgcolor="#DBDBDB" class="kk">State</td>
  282.     <td><?php echo $row_DetailRS2['state']; ?></td>
  283.   </tr>
  284.   <tr>
  285.     <td bgcolor="#DBDBDB" class="kk">Zipcode</td>
  286.     <td><?php echo $row_DetailRS2['zipcode']; ?></td>
  287.   </tr>
  288.   <tr>
  289.     <td bgcolor="#DBDBDB" class="kk">Cell Phone</td>
  290.     <td><?php echo $row_DetailRS2['cellphone']; ?></td>
  291.   </tr>
  292.   <tr>
  293.     <td bgcolor="#DBDBDB" class="kk">Home Phone</td>
  294.     <td><?php echo $row_DetailRS2['homephone']; ?></td>
  295.   </tr>
  296.   <tr>
  297.     <td bgcolor="#DBDBDB" class="kk">Email Address</td>
  298.     <td><?php echo $row_DetailRS2['email']; ?></td>
  299.   </tr>
  300.   <tr>
  301.     <td bgcolor="#DBDBDB" class="kk">Home Territory</td>
  302.     <td><?php echo $row_DetailRS2['hometerritory']; ?></td>
  303.   </tr>
  304.   <tr>
  305.     <td bgcolor="#DBDBDB" class="kk">Remote Territory</td>
  306.     <td><?php echo $row_DetailRS2['remoteterritory']; ?></td>
  307.   </tr>
  308.   <tr>
  309.     <td bgcolor="#DBDBDB" class="kk">Previous Experience PErforming Inspections?</td>
  310.     <td><?php echo $row_DetailRS2['experience']; ?></td>
  311.   </tr>
  312.   <tr>
  313.     <td bgcolor="#DBDBDB" class="kk">DIgital Camera Type:</td>
  314.     <td><?php echo $row_DetailRS2['camera']; ?></td>
  315.   </tr>
  316.   <tr>
  317.     <td bgcolor="#DBDBDB" class="kk">List Experience</td>
  318.     <td><?php echo $row_DetailRS2['experience2']; ?></td>
  319.   </tr>
  320.   <tr>
  321.     <td bgcolor="#DBDBDB" class="kk"><span class="ee1" style="color: #030303">How many days are you willing to work per week?</span></td>
  322.     <td><?php echo $row_DetailRS2['numberofdays']; ?></td>
  323.   </tr>
  324.   <tr>
  325.     <td bgcolor="#DBDBDB" class="kk">Are you currently working full time?</td>
  326.     <td><?php echo $row_DetailRS2['fulltime']; ?></td>
  327.   </tr>
  328.   <tr>
  329.     <td bgcolor="#DBDBDB" class="kk">Are you available to work DAYTIME hours? </td>
  330.     <td><?php echo $row_DetailRS2['daytime']; ?></td>
  331.   </tr>
  332.   <tr>
  333.     <td bgcolor="#DBDBDB" class="kk">Internet Speed</td>
  334.     <td><?php echo $row_DetailRS2['intenet']; ?></td>
  335.   </tr>
  336.   <tr>
  337.     <td bgcolor="#DBDBDB" class="kk">Would You Be Willing To Obtain High Speed Internet?</td>
  338.     <td><?php echo $row_DetailRS2['internet2']; ?></td>
  339.   </tr>
  340.   <tr>
  341.     <td bgcolor="#DBDBDB" class="kk">Preffered Browser</td>
  342.     <td><?php echo $row_DetailRS2['browser']; ?></td>
  343.   </tr>
  344.   <tr>
  345.     <td bgcolor="#DBDBDB" class="kk">Operating System</td>
  346.     <td><?php echo $row_DetailRS2['operatingsystem']; ?></td>
  347.   </tr>
  348.   <tr>
  349.     <td bgcolor="#DBDBDB" class="kk"><span class="ee">How do you rate your computer knowledge?</span></td>
  350.     <td><?php echo $row_DetailRS2['techknowledge']; ?></td>
  351.   </tr>
  352.   <tr>
  353.     <td bgcolor="#DBDBDB" class="kk">How many years have you been using a computer?</td>
  354.     <td><?php echo $row_DetailRS2['techyears']; ?></td>
  355.   </tr>
  356.   <tr>
  357.     <td bgcolor="#DBDBDB" class="kk">A &quot;URL&quot; refers to which of the following</td>
  358.     <td><?php echo $row_DetailRS2['techurl']; ?></td>
  359.   </tr>
  360.   <tr>
  361.     <td bgcolor="#DBDBDB" class="kk">When navigating a website, <br />
  362. what would you do to return to the last page viewed?</td>
  363.     <td><?php echo $row_DetailRS2['technav']; ?></td>
  364.   </tr>
  365.   <tr>
  366.     <td bgcolor="#DBDBDB" class="kk">Photo resolution refers to what?</td>
  367.     <td><?php echo $row_DetailRS2['techcamres']; ?></td>
  368.   </tr>
  369.   <tr>
  370.     <td bgcolor="#DBDBDB" class="kk">The right button on the mouse <br />
  371. is used for the following tasks?</td>
  372.     <td><?php echo $row_DetailRS2['techmouse']; ?></td>
  373.   </tr>
  374.   <tr>
  375.     <td bgcolor="#DBDBDB" class="kk">Drivers License</td>
  376.     <td><?php echo $row_DetailRS2['dl']; ?></td>
  377.   </tr>
  378.   <tr>
  379.     <td bgcolor="#DBDBDB" class="kk">Accepted IC Agreement?</td>
  380.     <td><?php echo $row_DetailRS2['icaccept']; ?></td>
  381.   </tr>
  382.   <tr>
  383.     <td bgcolor="#DBDBDB" class="kk">Social Security Number</td>
  384.     <td><?php echo $row_DetailRS2['ssnumber']; ?></td>
  385.   </tr>
  386.   <tr>
  387.     <td bgcolor="#DBDBDB" class="kk">Birth Date</td>
  388.     <td><?php echo $row_DetailRS2['birthdate']; ?></td>
  389.   </tr>
  390. </table>
  391.  
  392.  
  393. </body>
  394. </html>
  395. <?php
  396. mysql_free_result($rsshowuser);
  397.  
  398. mysql_free_result($DetailRS1);
  399.  
  400. mysql_free_result($DetailRS2);
  401. ?>
May 28 '09 #1
1 1482
prabirchoudhury
162 New Member
hey

1. next time wrap your code inside the "code wraper" # button right top of the edit box. your thread heading "photo upload problem" but there is nothing abt upload i could see in your code.


2. what part of your code having problem ? please mention specificly. you dont have much comments in your code as well.


3. make sure that your image directory is right and image exist there.


mention the specificly where you are having problem ...
May 29 '09 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

10
2896
by: matt | last post by:
I have this code, works perfectly on Windows server, but now i'm trying to run it on a Linux server, the form submits, i get no errors, but the photo doesnt upload, and the caption file doesnt write.... any ideas why?? <?php include 'gall_settings.inc';
2
1982
by: Tony WONG | last post by:
i am not sure that this subject can be discussed here. i have many photos. they are stored according to the name of the EVENT and YEAR. i will set up a database (sql or access) to store information of the photo and set up a folder to store the "PHOTOs". and design a web page to show. My question is how to put the photo on the web page.
5
3254
by: bob garbados | last post by:
I am trying to create a database-driven photo gallery for a friend with an admin form to upload images... I can upload a file to the web server, but I want to store the image in a database and I want to resize the image before I save it... How do I take the uploaded .jpg and shrink it to a thumbnail? How do I pass the uploaded .jpg to a stored procedure that will store the image as an image datatype in SQL Server 2000? I'm developing this...
3
2488
by: bob garbados | last post by:
I'm looking for thoughts on photo galleries and security/performance implications... I'm working on an asp.net site in vb that will include an updateable photo gallery that will display thumbnails on a page and clicking on the thumbnails would pop open another window with the full-sized image. The site needs a form that provides for uploading photos. The photo gallery can be limited to a certain number of photos if need be. What are the...
3
2563
by: byrd48 | last post by:
Hi, I am developing a web site which allows users to upload and share photos. I have a datalist which lists the photos and has the usual edit, update commands. Within the edititemtemplate, I have links to allow the user to rotate the photo 90 degrees left or right. After I rebind the datalist,the photo is not rotated on the web page, although it correctly rotated on the server. If I click refresh, it updates, but calling refresh causes...
13
4361
by: Viken Karaguesian | last post by:
Hello everyone, Can anyone recommend a good online site to learn PHP? The W3Schools website is quite lacking - leaves much to be desired. I'm sure there are many places, but which ones are good? I currently run a site with an extensive photo gallery. Hundreds of photos. Right now I have a system which the thumbnails are laid out in a table. You click on a thumbnail and you see the full size picture. That full size picture is in its...
4
13759
slapshock
by: slapshock | last post by:
gud morning!!!!!!!! i have a problem on how to upload photo and save it in the database.... i am not so familiar in visual basic on how to code..... can you help me with this problem?? i want the codes that can the uploading and saving photos in visual basics....
1
6006
by: fariba123 | last post by:
hi i am working with php. i am designing a site which will store employee information along with his/her photo and also edit information. i have completed the information save and edit part. now i want to add the photo upload option in the save and edit form. looking forward to a quick reaply. thank you fariba
2
2035
by: RickVidallon | last post by:
I have a .Net application written in C# where members may upload their photos and have them displayed on our website. We are trying to maintain the best quality using best settings in .Net for this. A good commercial comparison is as follows; I uploaded a photo to www.flickr.com. http://www.flickr.com/photos/visionefx/446635882/in/photostream/ The photo contains 73076 kbs. --- When I upload the 'same photo' to our application it saves it...
1
3615
by: cumupkid | last post by:
II am trying to create a form that will allow me to upload photos to a folder in the site root directory and add the information to the mysql db at the same time. I have created two forms, one that uploads to photo to the folder in the site root diorectory. One that uploads the info to mysql database. but... When I try to upload them both ways at the same time i cant get it. I am Including code for both pages i have working. Code for...
0
9879
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11349
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11057
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9728
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8099
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7250
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5940
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4776
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3360
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.