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

Error when sending email

Hi,

Why does the following code report the error:
Error! The mail could not be sent

Here is the link to an actual post(try for yourself please)
http://www.coinpen.com/zero/index.ph...did=9&cityid=1

I can post an ad with no problems,but reponding to someone is when the problem occurs.


Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3.  
  4. require_once("initvars.inc.php");
  5. require_once("config.inc.php");
  6.  
  7. if($image_verification) 
  8. {
  9.     require_once("captcha.cls.php");
  10.     $captcha = new captcha();
  11. }
  12.  
  13. $msg = "";
  14. $err = "";
  15.  
  16. ?>
  17.  
  18. <?php
  19.  
  20. if (!$_GET['adid'])
  21. {
  22.     header("Location: $script_url/?view=main&cityid=$xcityid&lang=$xlang");
  23.     exit;
  24. }
  25.  
  26.  
  27. $adtable = ($_GET['view'] == "showevent") ? $t_events : $t_ads;
  28. $adid_prefix = (($xview == "events") ? "E" : "A");
  29. $full_adid = ($adid_prefix . $xadid);
  30. $reported = explode(";", $_COOKIE["reported"]);
  31. $is_reported = in_array($full_adid, $reported);
  32.  
  33. // Make up search query
  34. $qsA = $_GET; $qs = "";
  35. unset($qsA['do'], $qsA['reported'], $qsA['mailed'], $qsA['mailerr'], $qsA['msg'], $qsA['err']);
  36. foreach ($qsA as $k=>$v) $qs .= "$k=$v&";
  37.  
  38. if ($_GET['do'] == "reportabuse")
  39. {
  40.     if (!$is_reported) {
  41.  
  42.         /* Begin Version 5.0 */
  43.         $sql = "UPDATE $adtable 
  44.                 SET abused = abused + 1 
  45.                 WHERE adid = $_GET[adid] 
  46.                     AND abused < " . ($spam_indicator - 1);
  47.         /* End Version 5.0 */
  48.         mysql_query($sql) or die($sql);
  49.  
  50.         if(mysql_affected_rows())
  51.         {
  52.             echo "<div class=\"msg\">$lang[MESSAGE_ABUSE_REPORT]</div>";
  53.  
  54.             if($max_abuse_reports)
  55.             {
  56.                 /* Begin Version 5.0 */
  57.                 $sql = "UPDATE $adtable 
  58.                         SET enabled = '0' 
  59.                         WHERE adid = $_GET[adid]
  60.                             AND abused >= $max_abuse_reports";
  61.                 mysql_query($sql);
  62.                 /* End Version 5.0 */
  63.             }
  64.  
  65.             header("Location: $script_url/?{$qs}reported=y");
  66.             exit;
  67.         }
  68.     }
  69.  
  70.     unset($_GET['do']);
  71. }
  72.  
  73.  
  74. if ($xview == "showevent")
  75. {
  76.     // Get the event
  77.     $sql = "SELECT a.*, UNIX_TIMESTAMP(a.timestamp) AS timestamp, UNIX_TIMESTAMP(a.createdon) AS createdon, UNIX_TIMESTAMP(a.expireson) AS expireson, UNIX_TIMESTAMP(feat.featuredtill) AS featuredtill,
  78.             UNIX_TIMESTAMP(a.starton) AS starton, UNIX_TIMESTAMP(a.endon) AS endon
  79.         FROM $t_events a
  80.             LEFT OUTER JOIN $t_featured feat ON a.adid = feat.adid AND feat.adtype = 'E'
  81.         WHERE a.adid = $xadid
  82.             AND $visibility_condn_admin";
  83.     $ad = mysql_fetch_array(mysql_query($sql));
  84.  
  85.     $isevent = 1;
  86.  
  87.     /* Begin Version 5.0 */
  88.     $thisurl = buildURL($xview, array($xcityid, $xdate, $xadid, $ad['adtitle']));
  89.     /* End Version 5.0 */
  90.  
  91. }
  92. else
  93. {
  94.     // List of extra fields
  95.     $xfieldsql = "";
  96.     if(count($xsubcatfields)) 
  97.     {
  98.         for($i=1; $i<=$xfields_count; $i++)    $xfieldsql .= ", axf.f$i";
  99.     }
  100.  
  101.     // Get the ad
  102.     $sql = "SELECT a.*, ct.cityname as cityname, UNIX_TIMESTAMP(a.timestamp) AS timestamp, UNIX_TIMESTAMP(a.createdon) AS createdon, UNIX_TIMESTAMP(a.expireson) AS expireson, UNIX_TIMESTAMP(feat.featuredtill) AS featuredtill $xfieldsql
  103.             FROM $t_ads a
  104.                 INNER JOIN $t_subcats scat ON scat.subcatid = a.subcatid
  105.                 INNER JOIN $t_cities ct ON a.cityid = ct.cityid
  106.                 LEFT OUTER JOIN $t_adxfields axf ON a.adid = axf.adid
  107.                 LEFT OUTER JOIN $t_featured feat ON a.adid = feat.adid AND feat.adtype = 'A'
  108.             WHERE a.adid = $xadid
  109.                 AND $visibility_condn_admin";
  110.     $ad = mysql_fetch_array(mysql_query($sql));
  111.  
  112.     $isevent = 0;
  113.     /* Begin Version 5.0 */
  114.     $thisurl = buildURL($xview, array($xcityid, $xcatid, $xcatname, $xsubcatid, $xsubcatname, 
  115.         $xadid, $ad['adtitle']));
  116.     /* End Version 5.0 */
  117.  
  118. }
  119.  
  120.  
  121. if (!$ad) 
  122. {
  123.     /* Begin Version 5.0 */
  124.     header("Location: $script_url/index.php?view=post404&cityid=$xcityid&lang=$xlang");
  125.     /* End Version 5.0 */
  126.     exit;
  127. }
  128.  
  129.  
  130. if ($_POST['email'] && $_POST['mail'] && $ad['showemail'] == EMAIL_USEFORM)
  131. {
  132.     $err = "";
  133.  
  134.     if ($image_verification && !$captcha->verify($_POST['captcha']))
  135.     {
  136.         $err .= $lang['ERROR_IMAGE_VERIFICATION_FAILED'] . "<br>";
  137.     }
  138.     if (!ValidateEmail($_POST['email'])) 
  139.     {
  140.         $err .= $lang['ERROR_INVALID_EMAIL'] . "<br>";
  141.     }
  142.  
  143.     if (preg_match("/[\\000-\\037]/", $_POST['email']))
  144.     {
  145.         handle_security_attack("@");
  146.     }
  147.     else if (!$err)
  148.     {
  149.         $thismail_header = file_get_contents("mailtemplates/contact_header.txt");
  150.         $thismail_header = str_replace("{@SITENAME}", $site_name, $thismail_header);
  151.         $thismail_header = str_replace("{@ADTITLE}", $ad['adtitle'], $thismail_header);
  152.         $thismail_header = str_replace("{@ADURL}", "{$script_url}/{$thisurl}", $thismail_header);
  153.         $thismail_header = str_replace("{@FROM}", $_POST['email'], $thismail_header);
  154.  
  155.         $thismail_footer = file_get_contents("mailtemplates/contact_footer.txt");
  156.         $thismail_footer = str_replace("{@SITENAME}", $site_name, $thismail_footer);
  157.         $thismail_footer = str_replace("{@ADTITLE}", $ad['adtitle'], $thismail_footer);
  158.         $thismail_footer = str_replace("{@ADURL}", "{$script_url}/{$thisurl}", $thismail_footer);
  159.         $thismail_footer = str_replace("{@FROM}", $_POST['email'], $thismail_footer);
  160.  
  161.         $msg = $thismail_header . "\n" .
  162.                 stripslashes($_POST['mail']) . "\n" .
  163.                 $thismail_footer;        
  164.         /* Begin Version 5.1 - Send mail using SMTP */
  165.         $xtraheaders = array("Reply-To: " . $_POST['email']);
  166.  
  167.         $mailerr = sendMail($ad['email'], $lang['MAILSUBJECT_CONTACT_FORM'], $msg, 
  168.             $site_email, $langx['charset'], "attach", $xtraheaders);
  169.         /* End Version 5.1 - Send mail using SMTP */
  170.  
  171.         if ($mailerr)
  172.         {
  173.             $mailresult = "n";
  174.             if ($mailerr == "FAILED") $mailerr = "";
  175.         }
  176.         else 
  177.         {
  178.             $mailresult = "y";
  179.         }
  180.  
  181.         header("Location: $script_url/?$qs&mailed=$mailresult&mailerr=$mailerr");
  182.         exit;
  183.     }
  184.  
  185. }
  186.  
  187. $sql = "SELECT *
  188.         FROM $t_adpics p
  189.         WHERE p.adid = $xadid
  190.             AND isevent = '$isevent'";
  191. $pres = mysql_query($sql);
  192.  
  193.  
  194. ?>
  195.  
  196.  
  197. <script language="javascript">
  198. function confirmAbuseReport()
  199. {
  200.     if (confirm('<?php echo addslashes($lang['REPORT_ABUSE_CONFIRM']); ?>'))
  201.     {
  202.         /* Begin Version 5.0 */
  203.         eval("location.href = '?' + '<?php echo $qs; ?>' + 'do=reportabuse'");
  204.         /* End Version 5.0 */
  205.     }
  206. }
  207. </script>
  208.  
  209.  
  210. <?php
  211.  
  212. if ($_GET['reported']) {
  213.     $reported[] = $full_adid;
  214.     setcookie("reported", implode(";", $reported), time()+90*24*60*60, "/");
  215.     $is_reported = true;
  216. }
  217.  
  218. ?>
  219.  
  220.  
  221. <?php
  222.  
  223. if(!$_POST['mail'])
  224. {
  225.     if($_GET['mailed'] == "y")        { $msg .= $lang['MESSAGE_MAIL_SENT']."<br>"; }
  226.     elseif ($_GET['mailed'] == "n")    { $err .= $lang['ERROR_MAIL_NOT_SENT']."<br>".$_GET['mailerr']."<br>"; }
  227.  
  228.     if($_GET['reported'] == "y")    { $msg .= $lang['MESSAGE_ABUSE_REPORT']."<br>"; }
  229. }
  230.  
  231. if($_GET['msg'])                { $msg .= nl2br(htmlentities($_GET['msg']))."<br>"; }
  232. if($_GET['err'])                { $err .= nl2br(htmlentities($_GET['err']))."<br>"; }
  233.  
  234. ?>
  235.  
  236. <?php
  237.  
  238. if($err) echo "<div class=\"err\">$err</div>";
  239. if($msg) echo "<div class=\"msg\">$msg</div>";
  240.  
  241. ?>
  242.  
  243. <?php if($ad['featuredtill'] && $ad['featuredtill'] > time()) { ?>
  244. <div class="msg">
  245. <img src="http://bytes.com/images/featured.gif" align="absmiddle">
  246. <b><?php echo $lang['THIS_AD_IS_FEATURED']; ?></b>
  247. </div>
  248. <?php } ?>
  249.  
  250. <table class="postheader" width="100%"> <!-- Version 5.0 -->
  251. <tr>
  252. <td>
  253.  
  254. <div align="right">
  255. <!-- Begin Version 5.0 -->
  256. <?php if(!$is_reported) { ?><a href="javascript:confirmAbuseReport();"><?php echo $lang['REPORT_ABUSE']; ?></a> | <?php } ?>
  257. <a href="?view=mailad&cityid=<?php echo $xcityid; ?>&adid=<?php echo $xadid; ?>&adtype=<?php echo $xadtype; ?><?php if($xdate) echo "&date={$xdate}"; ?>"><?php echo $lang['EMAIL_THIS_AD_LINK']; ?></a> 
  258.  
  259. <?php if(!$debug) { ?>
  260. &nbsp;&nbsp;
  261.  
  262. <script type="text/javascript">var addthis_pub="4a1806ae49a62752";</script>
  263. <a href="http://www.addthis.com/bookmark.php?v=20" onmouseover="return addthis_open(this, '', '[url]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()" style="text-decoration:none;"><img src="http://s7.addthis.com/static/btn/sm-plus.gif" width="16" height="16" alt="Bookmark and Share" style="border:0; align:middle;"/> Share</a>
  264.  
  265. <?php } ?>
  266.  
  267. <!-- End Version 5.0 -->
  268. </div>
  269. <?php echo $lang['POST_ID']; ?> <?php echo ($xview=="showevent"?"E":"A"); ?><?php echo $ad['adid']; ?><br><br>
  270. <?php
  271. if ($xview == "showevent")
  272. {
  273. ?>
  274.     <b><?php echo date("d", $ad['starton'])." ".$langx['months_short'][date("n", $ad['starton'])-1] . ", " . date("y", $ad['starton']); ?>
  275.     <?php if($ad['starton'] != $ad['endon']) echo " - " . date("d", $ad['endon']) . " " . $langx['months_short'][date("n", $ad['endon'])-1] . ", " . date("y", $ad['endon']); ?></b>
  276.     <br>
  277.  
  278. <?php
  279. }
  280. ?>
  281.  
  282. <div class="posttitle"> <!-- Version 5.0 -->
  283. <?php echo $ad['adtitle']; ?>
  284. <?php 
  285. $loc = "";
  286. if($ad['area']) $loc = $ad['area'];
  287. if($xcityid < 0) $loc .= ($loc ? ", " : "") . $ad['cityname'];
  288. if($loc) echo " <span class=\"adarea\">($loc)</span>";
  289. ?>
  290. </div><br>
  291.  
  292. <b><?php echo $lang['AD_DATE']; ?></b>: 
  293. <?php echo QuickDate($ad['createdon']); ?>
  294. <br>
  295.  
  296. <?php if($ad['createdon'] != $ad['timestamp']) { ?>
  297. <b><?php echo $lang['AD_LAST_UPDATE']; ?></b>: 
  298. <?php echo QuickDate($ad['timestamp']); ?>
  299. <br>
  300. <?php } ?>
  301.  
  302. <b><?php echo $lang['AD_EXPIRES_ON']; ?></b>: 
  303. <?php echo QuickDate($ad['expireson']); ?>
  304. <br>
  305.  
  306. <b><?php echo $lang['REPLY_TO']; ?></b>: 
  307. <?php if ($ad['showemail'] == EMAIL_SHOW) { ?>
  308.     <a href="mailto:<?php echo $ad['email']; ?>"><?php echo $ad['email']; ?></a>
  309.  
  310. <?php } elseif ($ad['showemail'] == EMAIL_USEFORM) { ?>
  311.     <i><?php echo $lang['USE_CONTACT_FORM']; ?></i>
  312.  
  313. <?php } else { ?>
  314.     <i><?php echo $lang['EMAIL_NOT_SHOWN']; ?></i>
  315.  
  316. <?php } ?>
  317. <br>
  318.  
  319. </td>
  320. </tr>
  321. </table>
  322.  
  323. <?php
  324. if(($xsubcathasprice && $ad['price']) || count($xsubcatfields))
  325. {
  326.     /* Begin Version 5.0 */
  327.     $actualfields = $xsubcathasprice ? 1 : 0;
  328. ?>
  329. <div>
  330. <table>
  331.  
  332. <?php if($xsubcathasprice) { ?><tr><td><b><?php echo $xsubcatpricelabel; ?></b></td><td>: <?php if(($xsubcathasprice && $ad['price'] != 0.00)) { ?><?php echo $currency . $ad['price']; ?><?php } else { echo $lang['AD_PRICE_NOT_PROVIDED']; } ?></td></tr><?php } ?>
  333.  
  334. <?php if(count($xsubcatfields)) { foreach ($xsubcatfields as $fldnum=>$fld) { if(($fld['TYPE'] == "N" && $ad["f$fldnum"] > 0) || ($fld['TYPE'] != "N" && $ad["f$fldnum"])) { $actualfields++; ?>
  335. <tr><td><b><?php echo $fld['NAME']; ?></b></td><td>: <?php echo $ad["f$fldnum"]; ?></td></tr>
  336. <?php }}} ?>
  337. </table></div>
  338. <?php if ($actualfields) { ?>
  339. <div style="border-bottom:1px solid #E0E0E0;">&nbsp;</div>
  340. <?php } ?>
  341. <?php
  342.     /* End Version 5.0 */
  343. }
  344. ?>
  345.  
  346. <table class="post" width="100%"><tr><td> <!-- Version 5.0 -->
  347.  
  348. <!-- Begin Version 5.0 -->
  349. <?php echo generateHtml($ad['addesc'], $ad['createdon']); ?>
  350. <!-- End Version 5.0 -->
  351.  
  352. </td></tr></table>
  353.  
  354. <?php
  355.  
  356. if (@mysql_num_rows($pres))
  357. {
  358.     $i = 0;
  359. ?>
  360.  
  361.     <table class="postpics" width="100%"><tr><td> <!-- Version 5.0 -->
  362.  
  363. <?php
  364.     while ($row = mysql_fetch_array($pres))
  365.     {
  366.         $i++;
  367.  
  368.         $imgsize = GetThumbnailSize("{$datadir[adpics]}/{$row[picfile]}", $images_max_width, $images_max_height);
  369.  
  370. ?>
  371.  
  372.         <img src="<?php echo "{$datadir[adpics]}/{$row[picfile]}"; ?>" id="adimg<?php echo $i; ?>" width="<?php echo $imgsize[0]; ?>" height="<?php echo $imgsize[1]; ?>"><br><br>
  373.  
  374. <?php
  375.     }
  376. ?>
  377.  
  378.     </td></tr></table>
  379.  
  380. <?php
  381.  
  382.     $imgcnt = $i;
  383.  
  384. }
  385. ?>
  386.  
  387. <?php 
  388. if($ad['othercontactok']) echo "<p class=\"disclosure_yes\">$lang[COMMERCIAL_CONTACT_OK]</p>";
  389. else echo "<p class=\"disclosure_no\">$lang[COMMERCIAL_CONTACT_NOT_OK]</p>";
  390. ?>
  391.  
  392.  
  393. <?php
  394. $hits = $ad['hits'];
  395. $already_hit = explode(";", $_COOKIE["hits"]);
  396. if (!in_array($full_adid, $already_hit)) {
  397.     $sql = "update $adtable set hits = hits + 1, timestamp = timestamp where adid = $xadid";
  398.     mysql_query($sql);
  399.     $already_hit[] = $full_adid;
  400.     setcookie("hits", implode(";", $already_hit), 0, "/");
  401.     $hits++;
  402. }
  403. ?>
  404.  
  405.  
  406. <!-- Begin Version 5.0 -->
  407. <?php if (!$debug) { ?>
  408. <div style="float:left;">
  409.  
  410. <script type="text/javascript">var addthis_pub="4a1806ae49a62752";</script>
  411. <a href="http://www.addthis.com/bookmark.php?v=20" onmouseover="return addthis_open(this, '', '[url]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()" style="text-decoration:none;"><img src="http://s7.addthis.com/static/btn/sm-plus.gif" width="16" height="16" alt="Bookmark and Share" style="border:0; align:middle;"/> Share</a>
  412.  
  413. <script type="text/javascript" src="http://s7.addthis.com/js/200/addthis_widget.js"></script>
  414.  
  415. </div>
  416. <?php } ?>
  417. <div class="hits"><?php echo $hits; ?> hits<br><br></div>
  418. <br style="clear:both">
  419. <!-- End Version 5.0 -->
  420.  
  421.  
  422. <?php if ($ad['showemail'] == EMAIL_USEFORM) { 
  423.  
  424. /*$qs = ""; $qsA = $_GET; unset($qsA['syndicate']);
  425. foreach ($qsA as $k=>$v) $qs .= "$k=$v&";*/
  426.  
  427. ?>
  428.  
  429.     <form action="<?php echo "$script_url/?$qs"; ?>" method="post" enctype="multipart/form-data">
  430.     <table class="contactform">
  431.     <tr>
  432.         <th colspan="2"><?php echo $lang['CONTACT_USER']; ?>:<a name="contactform">&nbsp;</a>
  433. </th>
  434.     </tr>
  435.     <tr><td colspan="2">&nbsp;</td></tr>
  436.     <tr>
  437.         <td><?php echo $lang['YOUR_EMAIL']; ?>: <span class="marker">*</span></td>
  438.         <td>
  439.         <input type="text" size="65" name="email">
  440.         </td>
  441.     </tr>
  442.     <tr>
  443.         <td valign="top"><?php echo $lang['YOUR_MESSAGE']; ?>: <span class="marker">*</span></td>
  444.         <td>
  445.         <textarea cols="64" rows="10" name="mail"></textarea>
  446.         </td>
  447.     </tr>
  448.     <tr>
  449.         <td valign="top"><?php echo $lang['ATTACHMENT']; ?>:</td>
  450.         <td>
  451.         <input type="file" size="55" name="attach"><br>
  452.         <span class="hint"><?php echo $lang['UNSUPPORTED_ATTACHEMNTS']; ?>: <?php echo implode(", ", $contactmail_attach_wrongfiles); ?><br>
  453.         <?php echo $lang['MAX_ATTACHMENT_SIZE']; ?>: <?php echo $contactmail_attach_maxsize; ?>KB</span>
  454.         </td>
  455.     </tr>
  456.  
  457.     <?php
  458.     if($image_verification)
  459.     {
  460.     ?>
  461.  
  462.         <tr>
  463.             <td valign="top"><?php echo $lang['POST_VERIFY_IMAGE']; ?>: <span class="marker">*</span></td>
  464.             <td>
  465.             <img src="captcha.png.php?<?php echo rand(0,999); ?>"><br>
  466.             <span class="hint"><?php echo $lang['POST_VERIFY_IMAGE_HINT']; ?></span><br>
  467.             <input type="text" name="captcha" value="">
  468.             </td>
  469.         </tr>
  470.  
  471.     <?php
  472.     }
  473.     ?>
  474.  
  475.     <tr>
  476.         <td>&nbsp;</td>
  477.         <td><button type="submit"><?php echo $lang['BUTTON_SEND_MAIL']; ?></button></td>
  478.     </tr>
  479.     </table>
  480.     </form>
  481.  
  482. <?php } ?>
Apr 2 '11 #1
0 1241

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

Similar topics

1
by: Lad | last post by:
I use a new webhosting provider and I can not send an email from my script. This is the script that I use to test the connection ####################### import smtplib,poplib, #I first login...
5
by: BVM | last post by:
Hi: I have a problem when sending large email(more than 20Mb) from a web page. I got timeout error. How to overcome this problem? I am thinking to have a thread to send email. Once the thread...
3
by: Nick Brown | last post by:
Has any1 else had this error message. If so how do u solve it? The specified module could not be found. Description: An unhandled exception occurred during the execution of the current web...
3
by: Nicola | last post by:
When using the NewMail.Body object, ! and spaces are being added into the email after the email has been sent. Has anyone else had this problem or even better a solution??
1
by: VB Programmer | last post by:
I am making a simple VB.NET app to send emails. I put a test button on the form with code like this: Imports System.Web.Mail : Dim msgEmail As New System.Web.Mail.MailMessage With msgEmail...
5
by: Navin Mishra | last post by:
Hi, In load test of our .NET 2.0 socket application on Win2003 server, we are seeing sometimes WSEWOULDBLOCK error when sending data to clients. We are using synchronoous scokets with...
2
by: assor | last post by:
hi i want to send email through my vb.net code and it send to all email(gmail,yahoo) except hotmail i dont know why?? note 1) i'm using outlook express 2) i send email using iis and virtual...
1
jhardman
by: jhardman | last post by:
Could I have anyone interested look into this question ? User is getting an odd "access denied" error when trying to send email with CDOSYS.
11
by: rote | last post by:
I'm getting the email address from an excel sheet. But i need to send the email to multiple people When printing the below i get a@a.com;b@b.com;; But i want a@a.com;b@b.com; i don't need...
4
by: xyrhou | last post by:
When i uploaded my site i got these error at registration. When a user register he/she will receive a confirmation email with the link to activate his/her account. But i got this error when i click...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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: 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...

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.