335 Posted Topics
Re: The problem is with your video url... use this instead: `http://www.youtube.com/v/IVdGD3s-JdY` | |
Re: The best way to learn WordPress, is to create a dev site and start working with it. [code.tutsplus.com](http://code.tutsplus.com) is a good place to start as well. | |
Re: Here is a good plugin to help you: [Click Here](http://extensions.joomla.org/extensions/core-enhancements/coding-a-scripts-integration/head-code/25625) If you want to learn to do this yourself, you can read this artical. [Click Here](http://www.joomla-monster.com/blog/customization/the-best-way-to-add-custom-css-styles-to-joomla-3-template) | |
Re: Have you tried using Wine? [Documentation](https://www.winehq.org/download/ubuntu) `sudo apt-get install wine` | |
Re: I think it would be easier to use a service like gotomeeting. Setting up a dedicated server for hosting webinars would be expensive (hardware, software). However I did find an artical on[ tutsplus ](https://computers.tutsplus.com/tutorials/create-and-host-a-webinar-for-free-using-google-hangouts--cms-21805) | |
Re: Looks like you are working on your local computer. This is why you need php smpt mailer.. If you are on a live web server with sendmail instalaled you can use php mail() function to send email's without using your google account Example: $from = 'no-reply@domain.dev'; // sender $to = … | |
Re: Are you using vhosts for your domain.com/home.. if so, did you change the document root in your httpd.conf file? | |
Re: What is your ultimate goal besides sorting this array? What do you want to do with the array? If you want to sort from lowest to highets use: sort() [Docs](http://php.net/manual/en/function.sort.php) | |
Re: As suggested by Isaac_4 try moving your upload file to a new directory. $upload_path = '/uploads/'; $file = $_FILES['file']['name']; if(move_uploaded_file($_FILES['file']['tmp_name'],$upload_path.$file)){ echo $file . ' has been uploaded'; }else{ echo $file . ' has not been uploaded'; } | |
Re: You need to do this with a csv file. //Upload File 51 if (isset($_POST['submit'])) { 52 if (is_uploaded_file($_FILES['filename']['tmp_name'])) { 53 echo "<h1>" . "File ". $_FILES['filename']['name'] ." uploaded successfully." . "</h1>"; 54 echo "<h2>Displaying contents:</h2>"; 55 readfile($_FILES['filename']['tmp_name']); 56 } 57 58 //Import uploaded file to Database 59 $handle = fopen($_FILES['filename']['tmp_name'], … | |
Re: why are you exploding sizes? How do you have the size column defined? Try not to mix php with html if you can. <form method="post" action=""> <?php $sql = "SELECT * FROM tbl_product WHERE prod_id = '468'"; $results = mysqli_query($con, $sql); $row = mysqli_fetch_array($results); $sizes = explode(',',$row['size']); ?> <input type="hidden" … | |
Re: You are better off with [vyprvpn](http://www.goldenfrog.com/vyprvpn) Aslo, this should be posted in Community section. | |
Re: The best I advise I've heard is, you get what you pay for. | |
Re: //Get the total count of question you have in the database $sql = "SELECT count(id) FROM questions_table"; $max = mysqli_query($connection, $sql); //Create a random number from zero to the total count of question. //So if you have 10 question in your DB, than the random number will be anywhere //From … | |
Re: Try this: mysqli_real_query($conn, "SELECT * FROM users"); if (mysqli_field_count($link)) { /* this was a select/show or describe query */ $result = mysqli_store_result($conn); /* process resultset */ $row = mysqli_fetch_row($result); /* free resultset */ mysqli_free_result($result); } [Docs](http://php.net/manual/en/mysqli.field-count.php) | |
Re: What does your connection string look like?\ Should be something like this: `$mysqli = new mysqli("host", "user", "pass", "db");` then you can use the $mysqli object. | |
Re: Didn't you post this already? | |
Re: Checkout [Click Here](http://codecanyon.net) you might find what you are looking for. Also, you could find a developer to help you build it. | |
Re: 1. could have the ip addresss banned. 2. you could be sending spam and have been marked as a spaming server 3. If you are using a custom domin and, you may have some DNS issues with the server 4. Your imap, and or pop3 settings could be wrong. You … | |
Re: What @pritaeas is saying to you, is that you are setting the results in the while loop to variable names, but you are not printing out the results. So for instance you would echo out the row in the while loop: while($row = mysql_fetch_array($rs)) { echo $row['fld_projectname']; echo $row['fld_projectline']; echo … | |
Re: If you are using sql to sort the data it would look something like this. `$sql = "SELECT * FROM reservations ORDER BY date ASC";` or `$sql = "SELECT * FROM reservation ORDER BY reserve_date ASC";` | |
Re: This is taken form foundation framework @media only screen { } /* Define mobile styles */ @media only screen and (max-width: 40em) { } /* max-width 640px, mobile-only styles, use when QAing mobile issues */ // Medium screens @media only screen and (min-width: 40.063em) { } /* min-width 641px, medium … | |
Re: You need to user asynchronous javascript for this to happen.. Take a look at jquery. This is a good library to start with. | |
Re: Try using Ampps.. this comes with a nice control panel and will get you started alot faster. [Ampps](http://www.ampps.com/) | |
Re: change your checkbox name to `name="checkblock"` Why do you have a form inside a form? That makes no sense.. you should only have one. | |
Re: Try this: ul.currency { position:relative; } ul.currency li ul { width: 120px; height: 80px; position:absolute; top: 98%; left:0; display:none; background:#0FF; margin-left:50px; } ul.currency li:hover > ul { background:red; display:block; } ul.currency li ul li a { display:block; padding: 10px 0px 12px 0px; color: #494940; font: 12px "Noto Sans"; } | |
Re: Try setting the permission with the mkdir function `mkdir('/folder_path/foldername', 0755);` | |
Re: If you want to seperate the sections of your code, you will need to use PHP and include the files. <?php include('header.php'); ?> <?php include('menu.php'); ?> <?php include('footer.php);> you can not do this with html files. ![]() | |
Re: Here is a good place for bootstrap snippets. [Click Here](http://bootsnipp.com/) | |
Is this where I would post about DB2? Has anyone worked with it. I would like to intergrate active records with db2 functions and not sure if this is possible. | |
Re: Where do you get wt_get_option() ? is that part of the theme's functions? If you are trying to get options you are need to use: get_option('option_name'); Also you need to make sure you are doing your conditional statment in the wordpress loop. <?php if( have_posts() ): while( have_posts() ): the_post(); … | |
Re: have the client check this site to see if the editor is working. [Click Here](http://drupal.fckeditor.net/demo) Have the client disabled all browser plugins or reinstall firefox or chorme. Also, check the asset paths.. Sometimes this is a problem for browsers if a FQDN is not placed in the asset path. You … | |
Re: I like the idea, what programming lang are you trying to work with? | |
Re: Try here: [Click Here](http://code.tutsplus.com) Alot of information and tutorials. Great place to start. | |
Re: <input type="checkbox" name="param" value="param" <?php if( $value == 'param' ){echo 'checked="checked"';} ?> /> or just <input type="checkbox" name="param" value="param" checked="checked" /> | |
![]() | Re: Try clearing your page cache. |
Re: Do you need to add a new 1application's publicly accessible home page? | |
Re: Hostgator would be the best options.. They give you a lot of control over the server you are using, have a really solid up time record, and technical support system. I have used them for more than 8 years and continue to use their services. They offer unlimited emails, bandwidth, … | |
Re: Here is how I use my site loader: //Place this just before the head tag. //Load jquery.js file before you load the script below. <script type="text/javascript"> jQuery(window).load(function($){ jQuery(".loader").fadeOut("slow"); }); </script> <style type="text/css"> .loader { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 10001; background: #f0f0f0 url('http://sanjayghosh.stellervision.com/wp-content/themes/sanjayghoshmd/images/page-loader.gif') 50% … | |
Re: Have you thought about something like ownCloud? Its php based and works pretty good. Also has mobile apps. [Click Here](http://owncloud.org/) | |
Re: This maybe a bit off topic but I wanted let you know what I saw. You really don't want ppl to see this if you have a web design and web development company. Looking at your souce code, you are missing `<table>` tags at the bottom of your page. Also … | |
Re: From what I can see in your source code, you have some span tags that are not opened or closed.. Also,my browser is trying to load a script with the url as (http://swf). I'm guessing this is the swf file used to create your sounds. You sould try using FQDN's … | |
Re: What are you using to convert over to PDF? I understand that converting to pdf has some limitations when dealing with css. | |
Re: This might point you in the right direction. [Click Here](http://wesbos.com/html5-video-face-detection-canvas-javascript/) | |
Re: I suggest you buy the theme instead of using a nulled theme. Support the developer. You can buy the theme here: [Click Here](http://themeforest.net/item/inovado-retina-responsive-multipurpose-theme/3810895) | |
Re: Really? ok, try this. 1. You can use xml or database. You ca write an xml file with your movies listed as a node. 2. Yes it is possible the records of a movie can be in a database 3. You can use php to limit the number of movies … | |
| |
Re: If you are looking for a modal to display on the screen, you can do this in many ways. This is a good artical: [Click Here](http://www.smashingmagazine.com/2014/09/15/making-modal-windows-better-for-everyone/) |
The End.