473,511 Members | 14,990 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

No response from remote server after migrating

6 New Member
My php program has no response after migration. Here is the php code:

Expand|Select|Wrap|Line Numbers
  1.  
  2. <?php 
  3.  
  4. include_once("classes/ets.php"); 
  5. include_once("classes/em_documents.php"); 
  6. include_once("classes/em_sections.php"); 
  7. include_once("classes/em_attachment.php"); 
  8. include_once("classes/site_tools.php"); 
  9.  
  10. $mainblocks = array(); 
  11.  
  12. $obj_em_sections = new em_sections(); 
  13. $obj_em_sections->set_debug(true); 
  14.  
  15.  
  16.    if ($_GET["cid"]!="") { 
  17.       $arr_course_group = $obj_em_sections->fetch('id='.$_GET["cid"]);       
  18.    } else { 
  19.       $arr_course_group = $obj_em_sections->fetch_byparent(3,"ordernum"); 
  20.    } 
  21.  
  22.    foreach ($arr_course_group as $group) { 
  23.  
  24.       $arr_tree = $obj_em_sections->fetch_tree($group->id); 
  25.       if (count($arr_tree)>0) { 
  26.          $tmpgrp->title = $group->descript; 
  27.          $tmpgrp->id = $group->id; 
  28.          $folder_tree = array(); 
  29.  
  30.          $arr_tree2 = $arr_tree; 
  31.          $arr_withchildren = array(); 
  32.  
  33.          foreach ($arr_tree as $tree) { 
  34.             $tmpitem->level = $tree[1]; 
  35.             $tmpitem->id = $tree[0]->id; 
  36.  
  37.             for ($i=0;$i<$tree[1];$i++) { 
  38.                $prefix .= "&nbsp;&nbsp;&nbsp;&nbsp;"; 
  39.             } 
  40.  
  41.             //determine if this is id has children 
  42.             foreach ($arr_tree2 as $tree2) { 
  43.                if ($tree2[0]->parent_id==$tmpitem->id) { 
  44.                   array_push($arr_withchildren,$tmpitem->id); 
  45.                } 
  46.             } 
  47.             $arr_withchildren = array_unique($arr_withchildren); 
  48.  
  49.             if (in_array($tmpitem->id,$arr_withchildren)) { 
  50.                //no link required 
  51.                $tmpitem->title = $tree[0]->descript; 
  52.                $tmpitem->fullpage->title = ""; 
  53.                $tmpitem->fullpage->url = ""; 
  54.             } else { 
  55.                $tmpitem->title = ""; 
  56.                $tmpitem->fullpage->title = $tree[0]->descript; 
  57.                $tmpitem->fullpage->url = "?cid=".$tree[0]->id; 
  58.             } 
  59.             $tmpitem->tabs = $prefix; 
  60.  
  61.             array_push($folder_tree,$tmpitem); 
  62.             $prefix=""; 
  63.          } 
  64.          $tmpgrp->folders = $folder_tree; 
  65.          array_push($mainblocks,$tmpgrp); 
  66.          $tmpgrp=""; 
  67.       } else { 
  68.          if ($_GET["cid"]!="") { 
  69.             $arr_subsects = array($_GET['cid']); 
  70.             $courses = array(); 
  71.  
  72.             $obj_em_sections = new em_sections();    
  73.             $return_array = $obj_em_sections->fetch("id=".$_GET['cid']); 
  74.             if (count($return_array)>0) { 
  75.                foreach ($return_array as $section) { 
  76.                   $tmpgrp->title = $section->descript; 
  77.                   $tmpgrp->id = $section->id; 
  78.                } 
  79.             } 
  80.             $obj_em_documents = new em_documents(); 
  81.             $obj_em_documents->set_debug(false); 
  82.             $arr_courses = ""; 
  83.             $orderby = "title"; 
  84.             $arr_courses = $obj_em_documents->fetch_bysectiontree("intrash=0 AND isonline='TRUE'",$arr_subsects,$orderby); 
  85.             if (count($arr_courses)>0) { 
  86.                foreach ($arr_courses as $course) { 
  87.  
  88.                   if (site_tools::is_published($course->publish_on) && !site_tools::is_expired($course->remove_on)) { 
  89.  
  90.                      if ($course->redirecturl!="") { 
  91.                         //display the alternate URL 
  92.                         $arr_urlbits = explode(",",$course->redirecturl); 
  93.                         if (count($arr_urlbits)>0) { 
  94.                            list($width,$height) = explode("x",$arr_urlbits[1]); 
  95.                            $tmpcourse->alturlpopup->title = $course->title; 
  96.                            $tmpcourse->alturlpopup->w = $width; 
  97.                            $tmpcourse->alturlpopup->h = $height; 
  98.                            $tmpcourse->alturlpopup->url = $arr_urlbits[0]; 
  99.                         } else { 
  100.                            // no parameters given, open full window 
  101.                            $tmpcourse->fullpage->title = $course->title; 
  102.                            $tmpcourse->fullpage->url = $arr_urlbits[0]; 
  103.                            $tmpcourse->fullpage->target = "_blank"; 
  104.                         } 
  105.  
  106.                      } else { 
  107.                         //display the default URL 
  108.                         $tmpcourse->defaultpopup->title = $course->title; 
  109.                         $tmpcourse->defaultpopup->id = $course->id; 
  110.                      } 
  111.                      array_push($courses,$tmpcourse); 
  112.                      $tmpcourse=""; 
  113.                   } 
  114.                } 
  115.             } else { 
  116.                $courses[0]->descript = "No courses available at this time."; 
  117.             } 
  118.             $tmpgrp->folders = $courses; 
  119.             array_push($mainblocks, $tmpgrp); 
  120.             $tmpgrp=""; 
  121.          } 
  122.       } 
  123.    } 
  124.  
  125.  
  126.  
  127. $page->mainblocks = $mainblocks; 
  128. printt($page,'templates/php_ourbiz.tpl'); 
  129. ?> 
  130.  

The result of array mainblock is
Expand|Select|Wrap|Line Numbers
  1.  
  2. Array ( [0] => stdClass Object ( [title] => Skills Development [id] => 17 [folders] => Array ( [0] => stdClass Object ( [level] => 1 [id] => 32 [title] => [fullpage] => stdClass Object ( [title] => Information Technology (IT) Literacy Skills [url] => ?cid=32 ) [tabs] =>      ) [1] => stdClass Object ( [level] => 1 [id] => 33 [title] => Language & Communication Skills [fullpage] => stdClass Object ( [title] => [url] => ) [tabs] =>      ) [2] => stdClass Object ( [level] => 2 [id] => 40 [title] => [fullpage] => stdClass Object ( [title] => Communication Skills [url] => ?cid=40 ) [tabs] =>          ) [3] => stdClass Object ( [level] => 2 [id] => 42 [title] => [fullpage] => stdClass Object ( [title] => Language Skills [url] => ?cid=42 ) [tabs] =>          ) [4] => stdClass Object ( [level] => 2 [id] => 41 [title] => [fullpage] => stdClass Object ( [title] => Presentation Skills [url] => ?cid=41 ) [tabs] =>          ) [5] => stdClass Object ( [level] => 1 [id] => 20 [title] => Skills in Hospitality [fullpage] => stdClass Object ( [title] => [url] => ) [tabs] =>      ) [6] => stdClass Object ( [level] => 2 [id] => 49 [title] => [fullpage] => stdClass Object ( [title] => Culinary Skills [url] => ?cid=49 ) [tabs] =>          ) [7] => stdClass Object ( [level] => 2 [id] => 34 [title] => [fullpage] => stdClass Object ( [title] => Customer Service [url] => ?cid=34 ) [tabs] =>          ) [8] => stdClass Object ( [level] => 2 [id] => 57 [title] => [fullpage] => stdClass Object ( [title] => Food & Beverage Operations [url] => ?cid=57 ) [tabs] =>          ) [9] => stdClass Object ( [level] => 2 [id] => 21 [title] => National Skills Recognition System (NSRS) [fullpage] => stdClass Object ( [title] => [url] => ) [tabs] =>          ) [10] => stdClass Object ( [level] => 3 [id] => 22 [title] => [fullpage] => stdClass Object ( [title] => Food & Beverage Services [url] => ?cid=22 ) [tabs] =>              ) [11] => stdClass Object ( [level] => 3 [id] => 35 [title] => [fullpage] => stdClass Object ( [title] => Food Preparation & Production [url] => ?cid=35 ) [tabs] =>              ) [12] => stdClass Object ( [level] => 3 [id] => 36 [title] => [fullpage] => stdClass Object ( [title] => Hotel Supervisory And Management [url] => ?cid=36 ) [tabs] =>              ) [13] => stdClass Object ( [level] => 3 [id] => 37 [title] => [fullpage] => stdClass Object ( [title] => Rooms [url] => ?cid=37 ) [tabs] =>              ) [14] => stdClass Object ( [level] => 2 [id] => 39 [title] => [fullpage] => stdClass Object ( [title] => Technical Service [url] => ?cid=39 ) [tabs] =>          ) [15] => stdClass Object ( [level] => 2 [id] => 45 [title] => [fullpage] => stdClass Object ( [title] => Train-The-Trainer [url] => ?cid=45 ) [tabs] =>          ) [16] => stdClass Object ( [level] => 1 [id] => 60 [title] => [fullpage] => stdClass Object ( [title] => Workforce Skills Qualifications (WSQ) [url] => ?cid=60 ) [tabs] =>      ) ) ) [1] => stdClass Object ( [title] => Academic Development [id] => 18 [folders] => Array ( [0] => stdClass Object ( [level] => 1 [id] => 56 [title] => [fullpage] => stdClass Object ( [title] => Certificate Programmes [url] => ?cid=56 ) [tabs] =>      ) [1] => stdClass Object ( [level] => 1 [id] => 29 [title] => [fullpage] => stdClass Object ( [title] => Diploma Programmes [url] => ?cid=29 ) [tabs] =>      ) [2] => stdClass Object ( [level] => 1 [id] => 28 [title] => [fullpage] => stdClass Object ( [title] => NITEC Programmes [url] => ?cid=28 ) [tabs] =>      ) ) ) [2] => stdClass Object ( [title] => Executive Development [id] => 19 [folders] => Array ( [0] => stdClass Object ( [level] => 1 [id] => 31 [title] => [fullpage] => stdClass Object ( [title] => Leadership [url] => ?cid=31 ) [tabs] =>      ) [1] => stdClass Object ( [level] => 1 [id] => 26 [title] => [fullpage] => stdClass Object ( [title] => Marketing & Sales [url] => ?cid=26 ) [tabs] =>      ) [2] => stdClass Object ( [level] => 1 [id] => 30 [title] => [fullpage] => stdClass Object ( [title] => Soft Skills [url] => ?cid=30 ) [tabs] =>      ) [3] => stdClass Object ( [level] => 1 [id] => 54 [title] => [fullpage] => stdClass Object ( [title] => Technical Knowledge [url] => ?cid=54 ) [tabs] =>      ) ) ) [3] => stdClass Object ( [title] => Professional Development [id] => 27 [folders] => Array ( [0] => stdClass Object ( [level] => 1 [id] => 38 [title] => [fullpage] => stdClass Object ( [title] => Raffles Professional Development (RPD) Programmes [url] => ?cid=38 ) [tabs] =>      ) ) ) [4] => stdClass Object ( [title] => Children's Programme [id] => 46 [folders] => Array ( [0] => stdClass Object ( [level] => 1 [id] => 48 [title] => [fullpage] => stdClass Object ( [title] => Children Courses [url] => ?cid=48 ) [tabs] =>      ) ) ) [5] => stdClass Object ( [title] => Innovative Programmes [id] => 52 [folders] => Array ( [0] => stdClass Object ( [level] => 1 [id] => 53 [title] => [fullpage] => stdClass Object ( [title] => Innovation [url] => ?cid=53 ) [tabs] =>      ) ) ) ) 
  3.  
  4.  
My source code of the template file php_ourbiz.tpl is as follow:

Expand|Select|Wrap|Line Numbers
  1.  
  2. {mask:main} 
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
  4. <html> 
  5. <head> 
  6. <script language="JavaScript"> 
  7. {# 
  8. <!-- 
  9. function MM_preloadImages() { //v3.0 
  10.   var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); 
  11.     var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) 
  12.     if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} 
  13.  
  14. function MM_findObj(n, d) { //v4.0 
  15.   var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { 
  16.     d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} 
  17.   if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; 
  18.   for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); 
  19.   if(!x && document.getElementById) x=document.getElementById(n); return x; 
  20.  
  21. function MM_swapImage() { //v3.0 
  22.   var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) 
  23.    if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} 
  24.  
  25. function MM_openBrWindow(theURL,winName,features) { //v2.0 
  26.   window.open(theURL,winName,features); 
  27. //--> 
  28. #} 
  29. </script> 
  30. <title>Raffles International Training Centre</title> 
  31. <link rel="stylesheet" href="css/main.css" type="text/css"> 
  32. </head> 
  33. <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" 
  34. img src="images/spacer.gif" width="5" height="8" onLoad="MM_swapImage('skilldev','','images/sidemenu_arrow.jpg','academicdev','','images/spacer.gif','exedev','','images/spacer.gif','profdev','','images/spacer.gif',1)"> 
  35. <script type="text/javascript" language="JavaScript1.2" src="js/sect_stm31.js"></script> 
  36. <script type="text/javascript" language="JavaScript1.2" src="js/sect_navi_menu.js"></script> 
  37. <TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0> 
  38.   <TR> 
  39.     <TD width="188"> 
  40.         <div id="Layer1" style="position:absolute; width:397px; height:19px; z-index:1; left: 390px; top: -3px"><a class="sidemenu" href="http://www.rafflesinternational.com" target="_blank">Raffles International Limited</a>&nbsp;<font color="#FF6600" size="1" face="Verdana, Arial, Helvetica, sans-serif">|</font>&nbsp;<a class="sidemenu" href="http://www.rkpl.com" target="_blank">Raffles Knowledge Private Limited</a></div> 
  41.       <IMG SRC="images/aboutus_01.jpg" WIDTH=188 HEIGHT=158 ALT="" align="absbottom"></TD>      
  42.  
  43.     <TD background="images/sect_titlebg.gif"> 
  44.       <div align="left"><img src="images/title_aboutus.jpg" width="582" height="158" align="absbottom"> 
  45.       </div> 
  46.     </TD> 
  47.   </TR> 
  48. </TABLE> 
  49. <table width="100%" cellspacing="0" cellpadding="0" border="0" height="500"> 
  50.   <tr> 
  51.     <td width="155" bgcolor="#ffffff" valign="top" > 
  52.       <!--//START: LEFT_TOPNAV//--> 
  53.       <table border="0" cellspacing="0" cellpadding="0" width="100%"> 
  54.         <tr> 
  55.           <td><img src="images/spacer.gif" width="188" height="1" border="0"></td> 
  56.         </tr> 
  57.       </table> 
  58. <!--//Start : Sidemenu//--> 
  59. <table border="0" cellspacing="0" cellpadding="0" width="100%"> 
  60.         <tr> 
  61.           <td><img src="images/spacer.gif" width="188" height="1" border="0"></td> 
  62.         </tr> 
  63.       </table> 
  64. <table width="95%" border="0" cellspacing="0" cellpadding="0" align="center"> 
  65.         <tr> 
  66.           <td width="7%"><img src="images/spacer.gif" width="9" height="10" align="middle"></td> 
  67.           <td width="93%">&nbsp;</td> 
  68.         </tr> 
  69.         <tr> 
  70.           <td width="7%" height="16"><img src="images/spacer.gif" width="9" height="10" align="middle" name="skilldev"></td> 
  71.           <td width="93%" height="2"><a class="sidemenu" href="our_biz.php#17">Skills Development</a></td> 
  72. </tr> 
  73. <td width="7%" height="16"><img src="images/spacer.gif" width="9" height="10" align="middle" name="academicdev"></td> 
  74. <td width="93%" height="2"><a class="sidemenu" href="our_biz.php#18">Academic Development</a></td> 
  75.    </tr><td width="7%" height="16"><img src="images/spacer.gif" width="9" height="10" align="middle" name="exedev"></td> 
  76. <td width="93%" height="2"><a class="sidemenu" href="our_biz.php#19">Executive Development</a></td> 
  77. </tr><td width="7%" height="16"><img src="images/spacer.gif" width="9" height="10" align="middle" name="profdev"></td> 
  78.           <td width="93%" height="2"><a class="sidemenu" href="our_biz.php#27">Professional Development</a></td> 
  79.    </tr> 
  80.    <tr> 
  81.  </tr> 
  82.       </table> 
  83.  
  84.     </td> 
  85.     <td width="100%" bgcolor="#EDEDF0" valign="top"> 
  86.  
  87.       <a name="#top"> 
  88.       <table width="95%" border="0" cellspacing="0" cellpadding="0" align="center"> 
  89.         <tr> 
  90.           <td align="center"><img src="/images/spacer.gif" height="10" width="1"></td> 
  91.         </tr>      
  92.         <tr> 
  93.           <td valign="top" height="656"> 
  94.             <p><span class="font11_333333"><b class="font12_CC0003">Our Business </b> 
  95.               </span></p> 
  96.             {mask:mainblocks} 
  97.             <a name="#{id}"> 
  98.             <table width="98%" border="0" cellpadding="2" align="center" cellspacing="0"> 
  99.               <tr> 
  100.                 <td class="font11_003399" bgcolor="#2C2C83" height="25"><b class="font13_ffffff">&nbsp;&nbsp;{title} </b></td> 
  101.               </tr> 
  102.               <tr> 
  103.                 <td bgcolor="#DCE3EF"> 
  104.                 <ul> 
  105.                   {mask:folders}{tabs}<img src="images/squarebullet.gif" vspace="2">&nbsp;&nbsp;<span class="font11_333333">{fullpage}{alturlpopup}{defaultpopup}{title}</span><br> 
  106.                   {/mask} 
  107.                 </ul> 
  108.                 </td> 
  109.               </tr> 
  110.               <tr> 
  111.                 <td bgcolor="EDEDF0" class="font11_333333" height="3"><img src="images/spacer.gif" width="1" height="3"></td> 
  112.               </tr> 
  113.             </table> 
  114.             <p> 
  115.             {/mask} 
  116.  
  117.           </td> 
  118.         </tr> 
  119.       </table> 
  120.       <!--//END: CONTENT_BODY//--> 
  121.       <!--//START: page_frame_2.tpl//--> 
  122.  
  123.  
  124. <tr> 
  125.  
  126.   <td colspan="2" bgcolor="#999999" height="1"><img src="images/spacer.gif" width="100%" height="1"></td> 
  127. </tr> 
  128.  
  129. <!--//END: page_frame_2.tpl//--> 
  130.   <!--//END: PAGE_CONTENT//--> 
  131.   <p> 
  132. <!--//START: PAGE_FOOTER//--> 
  133. <table border="0" cellspacing="0" cellpadding="0" width="90%" align="center"> 
  134.   <tr> 
  135.     <td>&nbsp;</td> 
  136.   </tr> 
  137. <tr><td align="center" class="footer">Copyright © 2004 Raffles International Training Centre, Singapore.  
  138.   All Rights Reserved. <a class="footer" href="home_terms.shtml">Terms and 
  139.   Conditions</a><br>Designed And Created By :<a class="footer" href="http://www.1-net.com.sg" target="_blank">1-Net Singapore</a></td></tr> 
  140. </table> 
  141. <!--//END: PAGE_FOOTER//--> 
  142.  
  143. </table></body> 
  144.  
  145. </html> 
  146.  
  147. {/mask} 
  148. {mask:defaultpopup} 
  149. <a class="paralink" href=javascript:; onClick=window.open('our_biz_course.php?cid={id}','nb','width=520,height=400,scrollbars,')>{title}</a> 
  150. {/mask} 
  151. {mask:alturlpopup} 
  152. <a class="paralink" href=javascript:; onClick=window.open('{url}','nb','width={w},height={h},scrollbars')>{title}</a> 
  153. {/mask} 
  154. {mask:fullpage} 
  155. <a href="{url}" target="{target}" class="paralink">{title}</a> 
  156. {/mask} 
  157.  
  158. It seems there are some problem of displaying the line in the template: 
  159. Code: 
  160.  
  161. {mask:folders}{tabs}<img src="images/squarebullet.gif" vspace="2">&nbsp;&nbsp;<span class="font11_333333">{fullpage}{alturlpopup}{defaultpopup}{title}</span><br> 
  162.  
How I modify to make it work properly?

Thanks
Grace
Sep 25 '07 #1
1 1728
pbmods
5,821 Recognized Expert Expert
Heya, Grace.

Changed thread title to better describe the problem (did you know that threads whose titles do not follow the Posting Guidelines actually get FEWER responses?).

What do you want your code to do? Give an example.
What is your code doing that you don't want it to do? Give an example.
What is your code *not* doing that it is supposed to? Give an example.
Sep 28 '07 #2

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

Similar topics

11
2333
by: Dave Anderson | last post by:
Consider the following: var GUID = Server.CreateObject("Scriptlet.TypeLib").GUID Let's assume GUID is {9A46FCC9-A7A1-4C96-9394-B1A966CEC081}. I happened to notice that if I concatenate this...
2
5645
by: edsuslen | last post by:
I am migrating working code (HTTPRequest with Authentication) from vb to vb.net vb: Set objXMLHTTPServer = New MSXML2.XMLHTTP30 objXMLHTTPServer.Open strMethod, strGetRequest, False, "UserId",...
10
5764
by: cleo | last post by:
I am migrating from VB6/Access to Visual Basic and SQL Express. I have success writing test code on my local machine and am now setting up tests for deployment to a server. I have installed SQL...
5
12027
by: twiggy182 | last post by:
Hi, I really need you help because I'm not very familliar with ASP and I could not find any solution to my problem. To put you in situation, I have a CGI to which I send a file name, and that...
13
31356
by: =?Utf-8?B?S2VzdGZpZWxk?= | last post by:
Hi Our company has a .Net web service that, when called via asp.net web pages across our network works 100%! The problem is that when we try and call the web service from a remote machine, one...
4
2473
by: JDS | last post by:
I am a newbie to asp.net but have done traditional vb, asp and vb.net - please forgive any dumb questions! As a test I have a very simple page (Default.aspx) with a single button which then...
3
1929
by: vtpvp82 | last post by:
I am having problem in getting response from remote server for that I have written following script response got correctly but the data on the page is not displayed it gives “–“ in place of grid...
1
2598
by: vtp82 | last post by:
can anybody tell me how can i get response from remote server. I am having problem in getting response from remote server for that I have written following script. But its not showing values in...
0
7237
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7137
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...
0
7349
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
7506
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5659
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
3219
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...
0
3210
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
445
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...

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.