335 Posted Topics

Member Avatar for davy_yg

The problem is with your video url... use this instead: `http://www.youtube.com/v/IVdGD3s-JdY`

Member Avatar for gabrielcastillo
0
217
Member Avatar for chrisde100

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.

Member Avatar for Glenn Rodgers
0
129
Member Avatar for jKidz

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)

Member Avatar for mavensays
0
353
Member Avatar for massivefermion

Have you tried using Wine? [Documentation](https://www.winehq.org/download/ubuntu) `sudo apt-get install wine`

Member Avatar for massivefermion
0
423
Member Avatar for davy_yg

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)

Member Avatar for gabrielcastillo
0
80
Member Avatar for bdanie
Member Avatar for davy_yg

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 = …

Member Avatar for davy_yg
0
496
Member Avatar for cambraydesign

Are you using vhosts for your domain.com/home.. if so, did you change the document root in your httpd.conf file?

Member Avatar for cambraydesign
0
347
Member Avatar for adishardis

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)

Member Avatar for broj1
0
314
Member Avatar for davy_yg

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'; }

Member Avatar for davy_yg
0
2K
Member Avatar for Sophia_1

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'], …

Member Avatar for Sophia_1
0
2K
Member Avatar for markii.borabon_1

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" …

Member Avatar for gabrielcastillo
0
141
Member Avatar for coroneshotel2
Re: vpn

You are better off with [vyprvpn](http://www.goldenfrog.com/vyprvpn) Aslo, this should be posted in Community section.

Member Avatar for gabrielcastillo
0
115
Member Avatar for scott.orenstein.12
Member Avatar for scott.orenstein.12
0
133
Member Avatar for JosephHanh

//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 …

Member Avatar for JosephHanh
0
4K
Member Avatar for Amine_3

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)

Member Avatar for gabrielcastillo
0
155
Member Avatar for RonKevinT.Manuela

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.

Member Avatar for gabrielcastillo
0
373
Member Avatar for keyra.lee.5
Member Avatar for janicemurby

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.

Member Avatar for gabrielcastillo
0
124
Member Avatar for msanzya

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 …

Member Avatar for gabrielcastillo
0
116
Member Avatar for zeeshan009

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 …

Member Avatar for gabrielcastillo
0
226
Member Avatar for Nurul_2

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";`

Member Avatar for gabrielcastillo
0
247
Member Avatar for hallianonline

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 …

Member Avatar for gabrielcastillo
0
111
Member Avatar for Amine_3

You need to user asynchronous javascript for this to happen.. Take a look at jquery. This is a good library to start with.

Member Avatar for gabrielcastillo
0
1K
Member Avatar for Jack_9

Try using Ampps.. this comes with a nice control panel and will get you started alot faster. [Ampps](http://www.ampps.com/)

Member Avatar for Jack_9
0
193
Member Avatar for kaprikorn07

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.

Member Avatar for gabrielcastillo
0
2K
Member Avatar for arifsaroha

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"; }

Member Avatar for gabrielcastillo
0
146
Member Avatar for Jake.20
Member Avatar for Jake.20
0
1K
Member Avatar for manchurianCEO

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.

Member Avatar for diafol
0
272
Member Avatar for EvaBozh

Here is a good place for bootstrap snippets. [Click Here](http://bootsnipp.com/)

Member Avatar for EvaBozh
0
148
Member Avatar for gabrielcastillo

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.

0
82
Member Avatar for ignnniter

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(); …

Member Avatar for gabrielcastillo
0
141
Member Avatar for chrishea

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 …

Member Avatar for chrishea
0
130
Member Avatar for lilita
Member Avatar for Gosyber
Member Avatar for gabrielcastillo
1
156
Member Avatar for Rickymarlo

Try here: [Click Here](http://code.tutsplus.com) Alot of information and tutorials. Great place to start.

Member Avatar for gabrielcastillo
0
60
Member Avatar for Keyra Lee

<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" />

Member Avatar for Keyra Lee
0
224
Member Avatar for Borderline
Member Avatar for lloyd.farrell.7
Member Avatar for gabrielcastillo
0
96
Member Avatar for problemsolver

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, …

Member Avatar for xcesslogic
-1
314
Member Avatar for bimaljr

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% …

Member Avatar for gabrielcastillo
0
139
Member Avatar for <M/>

Have you thought about something like ownCloud? Its php based and works pretty good. Also has mobile apps. [Click Here](http://owncloud.org/)

Member Avatar for gabrielcastillo
0
280
Member Avatar for abdallahbijle2

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 …

Member Avatar for gabrielcastillo
0
104
Member Avatar for chaze

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 …

Member Avatar for gabrielcastillo
0
138
Member Avatar for KamiNuvini

What are you using to convert over to PDF? I understand that converting to pdf has some limitations when dealing with css.

Member Avatar for gabrielcastillo
0
481
Member Avatar for rani_4

This might point you in the right direction. [Click Here](http://wesbos.com/html5-video-face-detection-canvas-javascript/)

Member Avatar for gabrielcastillo
0
225
Member Avatar for Clarence Weldy

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)

Member Avatar for synergy1009
-2
118
Member Avatar for arifsaroha

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 …

Member Avatar for arifsaroha
0
197
Member Avatar for Keyra Lee
Member Avatar for mangel.murti

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/)

Member Avatar for gabrielcastillo
0
111

The End.