473,387 Members | 1,425 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,387 software developers and data experts.

Space between two tables

matheussousuke
249 100+
HI, I did not know if should post this on HTML, or on PHP, cause that code is mixed. So I posted here.


I'm having an issue with a website, a table is getting a lot of space from another.

See the image, I put AT the image the part of the code that has the images







and here is the code


Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3.  
  4. // check if the 'install' directory exists, and warn of its existence
  5.   if (WARN_INSTALL_EXISTENCE == 'true') {
  6.     if (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/install')) {
  7.    $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning');   
  8.     }
  9.   }
  10.  
  11. // check if the configure.php file is writeable
  12.   if (WARN_CONFIG_WRITEABLE == 'true') {
  13.     if ( (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) ) {
  14.     $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning');   
  15.     }
  16.   }
  17.  
  18. // check if the session folder is writeable
  19.   if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') {
  20.     if (STORE_SESSIONS == '') {
  21.       if (!is_dir(tep_session_save_path())) {
  22.         $messageStack->add('header', WARNING_SESSION_DIRECTORY_NON_EXISTENT, 'warning');
  23.       } elseif (!is_writeable(tep_session_save_path())) {
  24.         $messageStack->add('header', WARNING_SESSION_DIRECTORY_NOT_WRITEABLE, 'warning');
  25.       }
  26.     }
  27.   }
  28.  
  29. // check session.auto_start is disabled
  30.   if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) {
  31.     if (ini_get('session.auto_start') == '1') {
  32.       $messageStack->add('header', WARNING_SESSION_AUTO_START, 'warning');
  33.     }
  34.   }
  35.  
  36.   if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) {
  37.     if (!is_dir(DIR_FS_DOWNLOAD)) {
  38.       $messageStack->add('header', WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT, 'warning');
  39.     }
  40.   }
  41.  
  42.   if ($messageStack->size('header') > 0) {
  43.     echo $messageStack->output('header');
  44.   }
  45. ?>
  46. <!-- start -->
  47. <?php
  48.   if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) {
  49. ?>
  50. <table border="0" width="100%" cellspacing="0" cellpadding="2">
  51.   <tr class="headerError">
  52.     <td class="headerError"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['error_message']))); ?></td>
  53.   </tr>
  54. </table>
  55. <?php
  56.   }
  57.  
  58.   if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) {
  59. ?>
  60. <table border="0" width="100%" cellspacing="0" cellpadding="2">
  61.   <tr class="headerInfo">
  62.     <td class="headerInfo"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['info_message']))); ?></td>
  63.   </tr>
  64. </table>
  65. <?php
  66.   }
  67. ?>
  68. <!-- start -->
  69. <table cellpadding="0" cellspacing="0" border="0" align="center" class="width_table">
  70.     <tr><td class="width_td">
  71.         <table cellpadding="0" cellspacing="0" border="0" align="center">
  72.             <tr><td class="row_1">
  73.  
  74.                 <table cellpadding="0" cellspacing="0" border="0"  class="wrapper_header_t">
  75.                     <tr><td class="wrapper_header_l">
  76.                         <table cellpadding="0" cellspacing="0" border="0" class="wrapper_header_b">
  77.                             <tr><td class="wrapper_header_r">
  78.                                 <table cellpadding="0" cellspacing="0" border="0" class="wrapper_header_tl">
  79.                                     <tr><td class="wrapper_header_tr">
  80.                                         <table cellpadding="0" cellspacing="0" border="0" class="wrapper_header_bl">
  81.                                             <tr><td class="wrapper_header_br">
  82.  
  83.                 <table cellpadding="0" cellspacing="0" border="0">
  84.                     <tr>
  85.                         <td class="logo" align="left">
  86.  
  87.  
  88.                         <a href="<? print  tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_LOGO . 'logo.gif'); ?>
  89.                         </a>
  90.  
  91.                         </td>
  92.  
  93.  
  94.  
  95.  
  96.                         <td>
  97.  
  98.  
  99.                         <a href="http://matheusgrafix.com/index.php?option=com_wmtportfolio&Itemid=69">
  100.  
  101. <img src="./images/Blue-Glow-Dreamy-Portrait.jpg" />    </td>
  102.  
  103.  
  104.  
  105.  
  106.  
  107.                         <td style="vertical-align:middle; text-align:left">
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. </a>
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.                         <table border="0" cellspacing="0" cellpadding="0" align="left" class="header">
  122.                             <tr>
  123.  
  124.                                 <td align="left">
  125.             <table border="0" cellspacing="0" cellpadding="0" align="center" style="width:100%">
  126.                 <tr><td>
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.                 <?php
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.                 /*
  150.  
  151.                  echo BOX_HEADING_CURRENCIES
  152.  
  153.                  */
  154.                  ?>
  155.  
  156.                 </td><td style="width:100%;"><?
  157.  
  158.                  /*
  159.  
  160.                  echo tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get');
  161. reset($currencies->currencies);
  162. $currencies_array = array();
  163. while (list($key, $value) = each($currencies->currencies)) {
  164. $currencies_array[] = array('id' => $key, 'text' => $value['title']);
  165. }
  166. $hidden_get_variables = '';
  167. reset($HTTP_GET_VARS);
  168. while (list($key, $value) = each($HTTP_GET_VARS)) {
  169. if ( ($key != 'currency') && ($key != tep_session_name()) && ($key != 'x') && ($key != 'y') ) {
  170. $hidden_get_variables .= tep_draw_hidden_field($key, $value);
  171. }
  172. }
  173. echo tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit();" class="select"') . $hidden_get_variables . tep_hide_session_id();
  174. echo '</form>';
  175.  
  176. */
  177.  
  178. ?>
  179.  
  180.  
  181. </td>
  182.                 </tr>
  183.             </table>
  184.                                 </td>
  185.                                 <td class="nav_separator"><?php echo tep_draw_separator('spacer.gif', '17', '1'); ?></td>
  186.                                 <td>
  187.     <table width="17" border="0" align="center" cellpadding="0" cellspacing="0" style="width:80px;">
  188.         <tr><td><?php
  189.  
  190.  
  191.         /*
  192.  
  193.  
  194. if (!isset($lng) || (isset($lng) && !is_object($lng))) {
  195. include(DIR_WS_CLASSES . 'language.php');
  196. $lng = new language;
  197. }
  198. $languages_string = '';
  199. reset($lng->catalog_languages);
  200. $i = 0; 
  201. while (list($key, $value) = each($lng->catalog_languages)) {
  202. if ($i)  $languages_string .= tep_image(DIR_WS_IMAGES.'spacer.gif','','','',' style="margin:0px 0px 0px 3px;"');
  203. $languages_string .= '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency')) . 'language=' . $key, $request_type) . '">' . tep_image(DIR_WS_LANGUAGES . $value['directory'] . '/images/' . $value['image'], $value['name'],'','','') . '</a>';
  204. $i++;
  205. }
  206. echo $languages_string;
  207.  
  208. */
  209.  
  210.  
  211. ?></td>
  212.         </tr>
  213.     </table>
  214.                                 </td>
  215.                                 <td class="nav_separator"><?php echo tep_draw_separator('spacer.gif', '17', '1'); ?></td>
  216.                                 <td class="z1">
  217.                 <table cellpadding="0" cellspacing="0" border="0">
  218.                     <tr>
  219.                         <td><b><?php echo BOX_HEADING_SHOPPING_CART;?></b><?php echo BOX_SHOPPING_NOW;?><a href="<?php echo tep_href_link('shopping_cart.php')?>"><?php echo $cart->count_contents()?> <?php echo BOX_SHOPPING_CART_EMPTY?></a></td>
  220.                     </tr>
  221.                 </table>
  222.                                 </td>
  223.                             </tr>
  224.                         </table>                
  225.  
  226.  
  227.                         </td>    
  228.                     </tr>
  229.                 </table>
  230.  
  231.                                             </td></tr>
  232.                                         </table>
  233.                                     </td></tr>
  234.                                 </table>
  235.                             </td></tr>
  236.                         </table>
  237.                     </td></tr>
  238.                 </table>
  239.                 <table cellpadding="0" cellspacing="0" border="0"><tr><td style="padding:6px 6px 0px 6px;border-right:1px solid #cfcfcf;border-left:1px solid #cfcfcf; background:#ffffff;">
  240.                 <table cellpadding="0" cellspacing="0" border="0" style="background:url(images/menu_bg.gif) 0px 0px repeat-x;">
  241.                     <tr><td class="menu">
  242.                         <table cellpadding="0" cellspacing="0" border="0">
  243.                             <tr>
  244. <?php          
  245.   switch($tab_sel){
  246.    case 2:
  247.     $item_menu_01 = 'id="over_m1" onMouseOut="this.id=\'over_m1\';" onMouseOver="this.id=\'over_m1\';"';
  248.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  249.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  250.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  251.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  252.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  253.     break;
  254.  
  255.    case 3:
  256.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  257.     $item_menu_02 = 'id="over_m2" onMouseOut="this.id=\'over_m2\';" onMouseOver="this.id=\'over_m2\';"';
  258.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  259.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  260.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  261.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  262.     break;
  263.  
  264.    case 4:
  265.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  266.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  267.     $item_menu_03 = 'id="over_m3" onMouseOut="this.id=\'over_m3\';" onMouseOver="this.id=\'over_m3\';"';
  268.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  269.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  270.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  271.     break;
  272.  
  273.    case 5:
  274.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  275.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  276.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  277.     $item_menu_04 = 'id="over_m4" onMouseOut="this.id=\'over_m4\';" onMouseOver="this.id=\'over_m4\';"';
  278.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  279.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  280.     break;
  281.  
  282.    case 6:
  283.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  284.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  285.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  286.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  287.     $item_menu_05 = 'id="over_m5" onMouseOut="this.id=\'over_m5\';" onMouseOver="this.id=\'over_m5\';"';
  288.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  289.     break;
  290.  
  291.    case 7:
  292.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  293.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  294.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  295.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  296.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  297.     $item_menu_06 = 'id="over_m6" onMouseOut="this.id=\'over_m6\';" onMouseOver="this.id=\'over_m6\';"';
  298.     break;
  299.  
  300.    default:
  301.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  302.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  303.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  304.  
  305.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  306.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  307.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';
  308.   }
  309. ?>            
  310.  
  311.                     <td <?php echo $item_menu_01;?> onClick="document.location='<?php echo tep_href_link('index.php')?>'" nowrap="nowrap"><? printf(BOX_MANUFACTURER_INFO_HOMEPAGE,"")?></td>
  312.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  313.                     <td <?php echo $item_menu_02;?> onClick="document.location='<?php echo tep_href_link('products_new.php')?>'"><?php echo BOX_HEADING_WHATS_NEW?></td>
  314.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  315.                     <td <?php echo $item_menu_03;?> onClick="document.location='<?php echo tep_href_link('specials.php')?>'"><?php echo BOX_HEADING_SPECIALS?></td>
  316.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  317.  
  318. <?php if (tep_session_is_registered('customer_id')) { 
  319.  
  320.      $acc_link = tep_href_link('account.php');
  321.      $acc_title= HEADER_TITLE_MY_ACCOUNT;
  322.     } else{ 
  323.      $acc_link = tep_href_link('create_account.php');
  324.      $acc_title= HEADER_TITLE_CREATE_ACCOUNT;
  325.     } 
  326. ?>                        
  327.                     <td <?php echo $item_menu_04;?> onClick="document.location='<?php echo $acc_link;?>'" nowrap="nowrap"><?php echo $acc_title;?></td>
  328.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  329. <?php if (tep_session_is_registered('customer_id')) { 
  330.  
  331.      $login_link = tep_href_link('logoff.php');
  332.      $login_title= HEADER_TITLE_LOGOFF;
  333.     } else{ 
  334.      $login_link = tep_href_link('login.php');
  335.      $login_title= HEADER_TITLE_LOGIN;
  336.     } 
  337. ?>                     
  338.                     <td <?php echo $item_menu_05;?> onClick="document.location='<?php echo $login_link;?>'"><?php echo $login_title;?></td>
  339.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  340.                     <td <?php echo $item_menu_06;?> onClick="document.location='<?php echo tep_href_link('contact_us.php')?>'"><?php echo BOX_INFORMATION_CONTACT?></td>
  341.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  342.                     </tr>
  343.                 </table>
  344.                     </td>
  345.  
  346.                     <td class="search">
  347.                     <?php echo tep_draw_form('search',tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false),'get') ?>
  348.                         <table border="0" cellspacing="0" cellpadding="0" align="right" style="width:176px; margin-bottom:0px;">
  349.                         <tr>
  350.                             <td style="vertical-align:top;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg2.gif')?></td>
  351.                             <td style="width:100%;background:url(images/search_bg22.gif) 0px 0px repeat-x;">
  352.                                 <table cellpadding="0" cellspacing="0" border="0">
  353.                                     <tr><td style="height:21px;"><input type=text name="keywords" class="go" value=""></td></tr>
  354.                                 </table>
  355.                             </td>
  356.                             <td style="vertical-align:top; padding-right:5px;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg222.gif')?></td>
  357.                             <td style="vertical-align:top;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg3.gif')?></td>
  358.                             <td style="background:url(images/search_bg33.gif) 100% 0px repeat-x;height:21px;"><?php echo tep_image_submit('button_search_prod.gif', '', '')?></td><td style="vertical-align:top;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg333.gif')?></td>
  359.                         </tr>
  360.                         </table></form>                                        
  361.                     </td></tr>
  362.                 </table>
  363.                 </td></tr></table>
  364.             </td></tr>
  365.             <tr><td class="row_2">
  366.  
  367.  





I tried all kind of stuff to make those table loose that space, but I can't understand what's going on, is that because of the php?


I just wanna get the image the is on the middle, and bring it to the left side, nearby the logo.


Thank you for your patron

cheers
Sep 25 '10 #1
4 8467
Atli
5,058 Expert 4TB
That is a LOT of tables! You really should avoid using tables for layouts. It's an obsolete technique. You should especially avoid nesting tables. That's a nightmare to control.

That said, have you validated your HTML? Even the most minor error in your HTML could cause something like that.

A problem like this would not be caused by PHP, but rather the output PHP generates. It would be better to see the generated output rather than the PHP-infused HTML.
Sep 25 '10 #2
matheussousuke
249 100+
Trouble is.... this is a oscommerce template, It was kind hard to change the template, once that the other one had a lot of modifications that could not be undone.

I will try the output stuff, thx
Sep 25 '10 #3
matheussousuke
249 100+
I'm trying, how do I do that with Dreamweaver????????????
Sep 25 '10 #4
Atli
5,058 Expert 4TB
Open your site in Firefox, right-click and do "View page source".
Sep 26 '10 #5

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

Similar topics

5
by: Brad Tobin | last post by:
On a production database, there is a 2GB database, when I run sp_spaceused it indicates a very high quanity of unused space. The database has been shrunk & free space sent to the OS. Why is this...
1
by: Gh! | last post by:
How can I see how much disk space is being occupied by an InnoDB table? Looking into /var/lib/mysql doesn't seem to work anymore for InnoDB tables. Please tell also if there is a way to see how...
5
by: Yasaswi Pulavarti | last post by:
does a command like, db2 drop table tabschema.tabname when run from the Aix prompt reclaim the disk space? Are there any other options? How can we make sure the disk space is reclaimed? Thanks,...
3
by: Random Person | last post by:
Does anyone know how to use VBA to relink tables between two MS Access databases? We have two databases, one with VBA code and the other with data tables. The tables are referenced by linked...
3
by: (Pete Cresswell) | last post by:
Seems like creating a #temp table is kind of useless because it cannot be bound to a subform. OTOH, seems like a waste of resources to populate work tables in the "real" database - both because...
53
by: Alan Silver | last post by:
Hello, I understand the issue that tables should be used for tabular data and not for layout, but I would like some clarification as to exactly what constitutes tabular data. For example, if...
9
by: mike_dba | last post by:
I am using DMS raw. I have a tablespace which is defined with 5 containers each allocated at 1.5 GB for a total of about 7.5 GB. I did a major deletion followed by a reorg and a runstats. I am...
5
by: Konstantin Andreev | last post by:
Recently I became interested, - Are the data, bulk loaded in the table with LOAD utility, consume the same disk space as loaded with IMPORT utility? The answer turned out to be NOT ! Here is a...
32
by: Simon Dean | last post by:
Duh... Not another one... Hopefully simple though, I hate the way *I* (and it might be a CSS trait) can't intermix fixed width divisional elements with a variable auto expanding div??? The...
15
by: Peter | last post by:
I have the following web page and I am trying to have the Field lables NOT to wrap. It looks fine in a designer but when I run the program in a browser the lables that have a space wrap. How do I...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...

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.