473,398 Members | 2,120 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

how to retain the values on my index page after submitting but there were error

Hi! I have lots of problems here. I have here my codes for form validations and my problems are after submitting and there were errors, the page must be return to the index and retain it's values. Also if user ID already exists, it should alert the user after filling the userID textbox not finishing all the boxes. I used wampserver and PHP my admin for this.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>UCPB Registration </title>
  6. <link rel="stylesheet" type="text/css" href="style.css" />
  7. </head>
  8. <body>
  9. <div id="wrap">
  10.  
  11.     <div id="header">
  12.       <div id="logo">
  13.         <h1>Welcome to UCPB!</h1>
  14.       </div>
  15.       <ul id="nav">
  16.         <li><a href="index.html">Home</a></li>
  17.         <li><a href="index.html">About us</a></li>
  18.         <li><a href="index.html">Services</a></li>
  19.         <li><a href="index.html">Register</a></li>
  20.  
  21.       </ul>
  22.     </div>
  23.     <!-- /header -->
  24.     <div id="content">
  25.       <div class="side fl">
  26.       </div>
  27.       <div class="main fr">
  28.         <div id="text">
  29.           <p> <img src="images/img.jpg" alt="" /></p>
  30.           <p> <img src="images/img(2).jpg" alt="" /></p> <br /> 
  31.            <p> <img src="images/biz.jpg" alt="" /></p> <br />    
  32.             <p> <img src="images/os.jpg" alt="" /></p>   </div>
  33.         <div class="content">
  34.  
  35.  
  36. <p align="left">
  37.  
  38. <form name="myForm" action ="2.php" method="post"> 
  39. <table border="0">
  40. <tr><td>
  41. User ID:
  42. </td><td><input type="text" name="userID" onchange="checkUserID(userID);" maxlength="20"/><br/>
  43. <script language="javascript"  type="text/javascript">
  44. function checkUserID(userID) {
  45. var re = /[^\w]/;
  46. var ID = userID.value;
  47.     if (ID.length < 6 || ID.length > 20 || ID.match(re)) {
  48.         alert("User ID is invalid");
  49.         userID.focus();
  50.         userID.select();
  51.         return true;
  52.     }
  53. }
  54. </script>
  55. </tr></td>
  56. <tr><td>
  57. Password: 
  58. </td><td><input type="password" name="password" onchange="checkPass(password);" size="21" maxlength="20"/><br/>
  59. <script language="javascript" type="text/javascript">
  60. function checkPass(password) {
  61. var pass1 = password.value;
  62. var lowerchar = /[a-z]/;
  63. var upperchar = /[A-Z]/;
  64. var nums = /[0-9]/;
  65.     if (pass1.length < 8 || pass1.length > 20 || !pass1.match(lowerchar) || !pass1.match(upperchar) || !pass1.match(nums)){
  66.         alert("Invalid Password! Should have atleast 1 uppercase , 1 lowercase letter \n 1 integer and 1 special character!");
  67.         password.focus();
  68.         password.select();
  69.         return true;
  70.     }
  71. }
  72. </script>
  73. </tr></td>
  74. <tr><td>
  75. Confirm Password: 
  76. </td><td><input type="password" name="password2" onChange="checkPass2(password,password2);" size="21" maxlength="20"/> <br/>
  77. <script language="javascript" type="text/javascript">
  78. function checkPass2(password,password2) {
  79. var pass1 = password.value;
  80. var pass2 = password2.value;
  81.     if (pass1 != pass2) {
  82.         alert("Passwords are not matched!");
  83.         password2.focus();
  84.         password2.select();
  85.         return true;
  86.     }
  87. }
  88. </script>
  89. </tr></td>
  90.  
  91.  
  92.  
  93. <tr><td>
  94. Account Number:
  95. </td><td><input type="text" name="accountnumber" onChange="checkAC(accountnumber);" maxlength="12"/><br/>
  96. <script language="javascript"  type="text/javascript">
  97. function checkAC(accountnumber) {
  98. var notNum = /[A-Za-z\D]/;
  99. var AC = accountnumber.value;
  100.     if (AC.length !=12 || AC.match(notNum)) {
  101.         alert("Invalid Account Number!");
  102.         accountnumber.focus();
  103.         accountnumber.select();
  104.         return true;
  105.     }
  106. }
  107. </script>
  108. </tr></td>
  109.  
  110.  
  111. <tr><td>
  112. <tr><td>
  113. First Name:
  114. </td><td><input type="text" name="firstname" onChange="checkFname(firstname);" maxlength="50"/><br/>
  115. <script language="javascript" type="text/javascript">
  116. function checkFname(firstname) {
  117. var fname = firstname.value;
  118.  
  119. var nums = /[\d]/;
  120. var char = /[A-Za-z]/;
  121.  
  122.     if (fname.length < 2 || fname.length > 50 || nums.test(fname) || !char.test(fname)) {
  123.         alert("First Name is Invalid!.");
  124.         firstname.focus();
  125.         firstname.select();
  126.         return true;
  127.     }
  128. }    
  129. </script>
  130. </td></tr>
  131. <tr><td>
  132. Middle Name: 
  133. </td><td><input type="text" name="middlename" onChange="checkMname(middlename);" maxlength="50"/><br/>
  134. <script language="javascript" type="text/javascript">
  135. function checkMname(middlename) {
  136. var mname = middlename.value;
  137.  
  138. var nums = /[\d]/;
  139. var char = /[A-Za-z]/;
  140.  
  141.     if (mname.length < 2 || mname.length > 50 || nums.test(mname) || !char.test(mname)) {
  142.         alert("Middle Name is Invalid!");
  143.         middlename.focus();
  144.         middlename.select();
  145.         return true;
  146.     }
  147. }    
  148. </script>
  149. </td></tr>
  150. <tr><td>
  151. Last Name:
  152. </td><td><input type="text" name="lastname" onChange="checkLname(lastname);"/><br/>
  153. <script language="javascript" type="text/javascript">
  154. function checkLname(lastname) {
  155. var lname = lastname.value;
  156.  
  157. var nums = /[\d]/;
  158. var char = /[A-Za-z]/;
  159.  
  160.     if (lname.length < 2 || lname.length > 50 || nums.test(lname) || !char.test(lname)) {
  161.         alert("Last Name is Invalid!");
  162.         lastname.focus();
  163.         lastname.select();
  164.         return true;
  165.     }
  166. }    
  167. </script>
  168. </td></tr>
  169. <tr><td>
  170. E-mail  Address:
  171. </td><td><input type="text" name="email" onChange="checkEmail(email);" maxlength="100"/><br/>
  172. <script language="javascript" type="text/javascript">
  173. function checkEmail(email) {
  174. var mail = email.value;
  175. var spxl_char = /^.+@.+\..{2,3}$/;
  176.     if (mail.length < 2 || mail.length > 100 || !mail.match(spxl_char)) {
  177.         alert("Invalid Email Address!");
  178.         email.focus();
  179.         email.select();
  180.         return true;
  181.     }
  182. }
  183. </script>
  184. </tr></td>
  185. <tr><td>
  186. Gender:
  187. </td><td>
  188. <select name="gender" onChange="checkGender(gender);">
  189. <option value="0">----</option>
  190. <option value="Male">Male</option>
  191. <option value="Female">Female</option>
  192. <script language="javascript" type="text/javascript">
  193. function checkGender(gender){
  194. var genderselect = gender.value;
  195.     if (genderselect == 0) {
  196.         alert("Please select your gender.");
  197.         gender.focus();
  198.         gender.select();
  199.         return true;
  200.     }
  201. }
  202. </script>
  203. </select>
  204. </tr></td>
  205. <tr><td>
  206. Birth Date:
  207. </td><td>
  208. <select name="month">
  209. <option value="0">----</option>
  210. <option value="January">January</option>
  211. <option value="February">Febuary</option>
  212. <option value="March">March</option>
  213. <option value="April">April</option>
  214. <option value="May">May</option>
  215. <option value="June">June</option>
  216. <option value="July">July</option>
  217. <option value="August">August</option>
  218. <option value="September">September</option>
  219. <option value="October">October</option>
  220. <option value="November">November</option>
  221. <option value="December">December</option>
  222. </select>
  223.  
  224. <select name="day" onChange="checkDate(month,day);">
  225. <option value="0">----</option>
  226. <option value="1">1</option>
  227. <option value="2">2</option>
  228. <option value="3">3</option>
  229. <option value="4">4</option>
  230. <option value="5">5</option>
  231. <option value="6">6</option>
  232. <option value="7">7</option>
  233. <option value="8">8</option>
  234. <option value="9">9</option>
  235. <option value="10">10</option>
  236. <option value="11">11</option>
  237. <option value="12">12</option>
  238. <option value="13">13</option>
  239. <option value="14">14</option>
  240. <option value="15">15</option>
  241. <option value="16">16</option>
  242. <option value="17">17</option>
  243. <option value="18">18</option>
  244. <option value="19">19</option>
  245. <option value="20">20</option>
  246. <option value="21">21</option>
  247. <option value="22">22</option>
  248. <option value="23">23</option>
  249. <option value="24">24</option>
  250. <option value="25">25</option>
  251. <option value="26">26</option>
  252. <option value="27">27</option>
  253. <option value="28">28</option>
  254. <option value="29">29</option>
  255. <option value="30">30</option>
  256. <option value="31">31</option>
  257.  
  258. <script language="javascript" type="text/javascript">
  259. function checkDate(month,day){
  260. var MM = month.value;
  261. var DD = day.value;
  262. var checker = "February";
  263. var checker2 = "April";
  264. var checker3 = "June";
  265. var checker4 = "September";
  266. var checker5 = "November";
  267.  
  268.     if ((MM == checker) && (DD > 29)) {
  269.         alert("Invalid date, Kindly check your input!");
  270.         day.focus();
  271.         day.select();
  272.         return true;
  273.     }
  274.  
  275.  
  276.     else if((MM == checker2 || MM == checker3  || MM == checker4  || MM == checker5) && (DD > 30))
  277.     {
  278.     alert  ("Invalid Date,Kindly check your input");
  279.     return true;
  280.     }
  281.  
  282. }
  283. </script>
  284. </select>
  285.  
  286. <select name="year" onChange="checkYear(month,day,year)">
  287. <option value="0">--------</option>
  288. <option value="2009">2009</option>
  289. <option value="2008">2008</option>
  290. <option value="2007">2007</option>
  291. <option value="2006">2006</option>
  292. <option value="2005">2005</option>
  293. <option value="2004">2004</option>
  294. <option value="2003">2003</option>
  295. <option value="2002">2002</option>
  296. <option value="2001">2001</option>
  297. <option value="2000">2000</option>
  298. <option value="1999">1999</option>
  299. <option value="1998">1998</option>
  300. <option value="1997">1997</option>
  301. <option value="1996">1996</option>
  302. <option value="1995">1995</option>
  303. <option value="1994">1994</option>
  304. <option value="1993">1993</option>
  305. <option value="1992">1992</option>
  306. <option value="1991">1991</option>
  307. <option value="1990">1990</option>
  308. <option value="1989">1989</option>
  309. <option value="1988">1988</option>
  310. <option value="1987">1987</option>
  311. <option value="1986">1986</option>
  312. <option value="1985">1985</option>
  313. <option value="1984">1984</option>
  314. <option value="1983">1983</option>
  315. <option value="1982">1982</option>
  316. <option value="1981">1981</option>
  317. <option value="1980">1980</option>
  318.  
  319.  
  320. <script language="javascript" type="text/javascript">
  321. function checkYear(month,day,year)
  322.  {
  323. var checker = "February";
  324.  
  325. MM = month.value;
  326. DD = day.value;
  327. YY = year.value;
  328.  
  329. var checkLY = YY%4;
  330.     if (MM == checker && DD > 28 && checkLY != 0)
  331.      {
  332.         alert("Unrecognize Leap Year, Please Check!");
  333.         year.focus();
  334.         year.select();
  335.         return true;
  336.     }
  337. }
  338. </script>
  339. </select><br/>
  340. <tr><td>
  341. <input type="submit" value="Register"/>
  342. </td></tr>
  343. </tr></td>
  344. </table>
  345. </form>
  346. </p>
  347.  
  348. </body>
  349.  
  350. </html>
  351.  
  352.  

and here's my second page.
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>UCPB Registration </title>
  6. <link rel="stylesheet" type="text/css" href="style.css" />
  7. </head>
  8. <body>
  9.  
  10. <form name="myForm" action ="3.php" method="post"> 
  11. <div id="wrap">
  12.  
  13.     <div id="header">
  14.       <div id="logo">
  15.         <h1>Welcome to UCPB!</h1>
  16.       </div>
  17.       <ul id="nav">
  18.         <li><a href="index.html">Home</a></li>
  19.         <li><a href="index.html">About us</a></li>
  20.         <li><a href="index.html">Services</a></li>
  21.         <li><a href="index.html">Register</a></li>
  22.  
  23.       </ul>
  24.     </div>
  25.     <!-- /header -->
  26.     <div id="content">
  27.       <div class="side fl">
  28.       </div>
  29.       <div class="main fr">
  30.         <div id="text">
  31.           <p> <img src="images/img.jpg" alt="" /></p>
  32.           <p> <img src="images/img(2).jpg" alt="" /></p> <br /> 
  33.            <p> <img src="images/biz.jpg" alt="" /></p> <br />    
  34.             <p> <img src="images/os.jpg" alt="" /></p>   </div>
  35.         <div class="content">
  36.  
  37.  
  38.  
  39. <?php
  40. $con = mysql_connect("localhost","root","");
  41. if (!$con)
  42.   {
  43.   die('Could not connect: ' . mysql_error());
  44.   }
  45.  
  46. mysql_select_db("ucpb", $con);
  47.  
  48. $userID = $_POST['userID'];
  49. $password = $_POST['password'];
  50. $email = $_POST['email'];
  51. $accountnumber = $_POST['accountnumber'];
  52. $firstname = $_POST['firstname'];
  53. $middlename = $_POST['middlename'];
  54. $lastname = $_POST['lastname'];
  55.  
  56.  
  57. $sql="INSERT INTO tbl_register (userID, password, password2, accountnumber, firstname, middlename, lastname, email, gender, month, day, year)
  58. VALUES
  59. ('$_POST[userID]','$_POST[password]', '$_POST[password2]' , '$_POST[accountnumber]', '$_POST[firstname]','$_POST[middlename]','$_POST[lastname]','$_POST[email]', '$_POST[gender]', '$_POST[month]', '$_POST[day]', '$_POST[year]')";
  60.  
  61. if(!$_POST['userID'] || !$_POST['password'] || !$_POST['password2'] || !$_POST['accountnumber']|| !$_POST['firstname'] || !$_POST['middlename'] ||!$_POST['lastname'] || !$_POST['email'] || !$_POST['gender'] || !$_POST['month'] || !$_POST['day'] || !$_POST['year'] ){
  62. echo "<script language=\"JavaScript\">window.alert(\"All fields are required\");</script>";
  63.  
  64.  
  65. exit;
  66. } // --> eto ung if statement na nagchecheck kung meron ba laman lahat ng textboxes
  67.  
  68.  
  69.  
  70. $result1 = mysql_num_rows(mysql_query("SELECT * FROM tbl_register WHERE userID = '$userID' "));
  71. $result2 = mysql_num_rows(mysql_query("SELECT * FROM tbl_register WHERE accountnumber = '$accountnumber' "));
  72.  
  73. if($result1 != 0){
  74. echo "<script language=\"JavaScript\">window.alert(\"User ID is already in use!\");
  75.  
  76. </script>";
  77. exit;
  78. } // --> check if User Id is already in use!
  79.  
  80. else if($result2 != 0){
  81. echo "<script language=\"JavaScript\">window.alert(\"Account Number is already in use!\");</script>";
  82. exit;
  83. } // --> check if Account Number is already in use!
  84.  
  85. else if (!preg_match("/[a-z0-9]$/i", $userID)){
  86. echo "<script language=\"JavaScript\">window.alert(\"Invalid User Id!\");</script>";
  87. return true;
  88. }//--> User ID
  89.  
  90.  
  91. else if (!preg_match("#.*^(?=.{8,20})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*\W).*$#", $password)){
  92. echo "<script language=\"JavaScript\">window.alert(\"Password is invalid!\");
  93. </script>"; 
  94. return true;
  95. }
  96.  
  97. else if ($password != $_POST['password2']){
  98. echo "<script language=\"JavaScript\">window.alert(\"Passwords are not matched\");</script>";
  99. return true;
  100. }
  101.  
  102. else if (preg_match("/[A-Za-z\D]/", $accountnumber)){
  103. echo "<script language=\"JavaScript\">window.alert(\"Invalid Account Number!\");</script>";
  104. return true;
  105. }
  106.  // --> account number
  107.  
  108.  
  109.  else if (!preg_match("/[A-Za-z]/", $firstname) || preg_match("/[\d]/", $firstname) ){
  110. echo "<script language=\"JavaScript\">window.alert(\"Invalid First Name!\");</script>";
  111. return true;
  112. }//-----> first name
  113.  
  114.  
  115.  else if (!preg_match("/[A-Za-z]/", $middlename) || preg_match("/[\d]/", $middlename) ){
  116. echo "<script language=\"JavaScript\">window.alert(\"Invalid Middle Name!\");</script>";
  117. return true;
  118. }//-----> middle name
  119.  
  120.  else if (!preg_match("/[A-Za-z]/", $lastname) || preg_match("/[\d]/", $lastname) ){
  121. echo "<script language=\"JavaScript\">window.alert(\"Invalid Last Name!\");</script>";
  122. return true;
  123. }//-----> last name
  124.  
  125. else if(!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", $email)){
  126. echo "<script language=\"JavaScript\">window.alert(\"Invalid Email Address\");</script>";
  127. return true;
  128. }// --> check format ng email
  129.  
  130.  
  131. if (!mysql_query($sql,$con))
  132.   {
  133.   die('Error: ' . mysql_error());
  134.   }
  135.  
  136.  
  137.  
  138. echo '
  139. <form method="post" action="2.php">
  140.  
  141. <font face="arial" size="4">Congratulations!</font>
  142.  
  143. <table width="50%" border="0">
  144.   <tr>
  145.     <td><font size="3" >User ID is:</font></td>
  146.     <td>
  147.  <font size="3">'.$_POST['userID'].'</font><br></td>
  148.   </tr>
  149.   <tr>
  150.     <td><font size="3" >Password is:</font></td>
  151.     <td>
  152.  <font size="3">'.$_POST['password'].'</font><br></td>
  153.   </tr>
  154.   <tr>
  155.     <td><font size="3" >Account Number is:</font></td>
  156.     <td>
  157.  <font size="3">'.$_POST['accountnumber'].'</font><br></td>
  158.   </tr>
  159.   <tr>
  160.     <td><font size="3" >First Name is:</font></td>
  161.     <td>
  162.  <font size="3">'.$_POST['firstname'].'</font><br></td>
  163.   </tr>
  164.   <tr>
  165.     <td><font size="3" >Middle Name is:</font></td>
  166.     <td>
  167.  <font size="3">'.$_POST['middlename'].'</font><br></td>
  168.   </tr>
  169.   <tr>
  170.     <td><font size="3" >Last Name is:</font></td>
  171.     <td>
  172.  <font size="3">'.$_POST['lastname'].'</font><br></td>
  173.   </tr>
  174.   <tr>
  175.     <td><font size="3" >Email Address is:</font></td>
  176.     <td>
  177.  <font size="3">'.$_POST['email'].'</font><br></td>
  178.   </tr>
  179.   <tr>
  180.     <td><font size="3" >Gender is:</font></td>
  181.     <td>
  182.  <font size="3">'.$_POST['gender'].'</font><br></td>
  183.   </tr>
  184.   <tr>
  185.     <td><font size="3" >Birthday is:</font></td>
  186.     <td>
  187.  <font size="3">'.$_POST['month'].' &nbsp; '.$_POST['day'].' &nbsp; '.$_POST['year'].'</font>
  188. </td>
  189.   </tr>
  190. </table>
  191.  
  192.  
  193.  
  194.  
  195.  
  196. </form>';
  197.  
  198.  
  199. mysql_close($con)
  200. ?> 
  201.  
  202. </body>
  203.  
  204. </html>
  205.  
thank you very much and God Bless. Hope you could help me.
Attached Files
File Type: zip b.zip (172.2 KB, 136 views)
Jun 7 '10 #1
2 1738
Atli
5,058 Expert 4TB
What errors are you getting?
Jun 7 '10 #2
no, actually on the codes there are no errors. What I mean is that if the user tends to click the submit button, and the fields are empty, a alert box would appear saying "All fields are required" and it goes back to the index.html but if I entered a valid User ID and the rest are empty it would do the same but now the user ID is cleared which is now my problem.
Jun 7 '10 #3

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

Similar topics

1
by: jgb_dba | last post by:
Hello, I not exactly sure how to determine the table when given the following information: -- Could not find the index for RID '999999' in index page ('1:99999999'), index id ), database...
3
by: Dirk | last post by:
I have a search page where you can fill in a search text and have som options to specify your search. after submit I want that the user's input (before submit) is bein shown. Currently, after...
0
by: xixi | last post by:
we are using db2 udb v8.1 on win 64 bit HP titanium machine with fp3 with type 4 db2jcc.jar driver. i have two database created under different patition on same drive. when i do db2dart on the...
2
by: Henry Sun | last post by:
Hi all, New to ASP.NET and this Newsgroup. recently I saw some major websites use ascx page as their index page (e.g. index.ascx?ProductId=blah). I did a little bit rearch but I still couldn't...
2
by: Henry J. | last post by:
Has anybody run into this index out range exception when opening and then closing a collectionEditor from within a PropertyGrid? I use PropertyGrid to edit configurations in my application. One...
0
by: dalaeth | last post by:
I have searched Google high and low and haven't found anything that works. Here's my problem, hopefully someone will be able to help! I'm using 1.1 Framework, and ODP.NET 9.5.0.7 on a Windows...
5
by: nex85 | last post by:
Hi, On Yahoo! web hosting, we are able to create subdomains, like: 1. yourplace.me.com 2. myplace.me.com 3. ourplace.me.com as subdomains of a site, e.g., www.me.com
2
by: ajd335 | last post by:
i have some errors of 404 page not found when webmaster crawls my site. i wanted to redirect to my home page when that error occurs. i donno where should i do the general code for redirection....
10
SaiRockinGuy
by: SaiRockinGuy | last post by:
Hi, How to retain values in jsp using struts2 tags. I am using <s:select></s:select> which has inbuilt properties in it. But the values are not retained when the page gets refreshed.Can...
8
luckysanj
by: luckysanj | last post by:
Dear Sir, How can i redirect index page to wwx.site.com/me/index.php. I have not fineshed front index page work so now i want to redirect this page to my personal information which is located...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
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,...
0
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...

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.